summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-19 01:39:37 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-19 01:39:37 +0000
commit4188ea6e9990520aa475dd37b69935a78769bfb9 (patch)
tree60bb0746acea24f7958a793587cbc41ef1e51d02 /libmpcodecs/vf.c
parent820eb81cc24679d0c5330a54c7394caa9d4ba44f (diff)
downloadmpv-4188ea6e9990520aa475dd37b69935a78769bfb9.tar.bz2
mpv-4188ea6e9990520aa475dd37b69935a78769bfb9.tar.xz
1. new alternate approach to inverse telecine! much better!
2. interlaced 4:2:0 planar to 4:2:2 packer. makes it possible to watch interlaced movies without horrible chroma artifacts, provided you have an interlaced display device. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9934 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 46ce5d9b8f..56b176325d 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -63,6 +63,8 @@ extern vf_info_t vf_info_hqdn3d;
extern vf_info_t vf_info_detc;
extern vf_info_t vf_info_telecine;
extern vf_info_t vf_info_tfields;
+extern vf_info_t vf_info_ivtc;
+extern vf_info_t vf_info_ilpack;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -117,6 +119,8 @@ static vf_info_t* filter_list[]={
&vf_info_detc,
&vf_info_telecine,
&vf_info_tfields,
+ &vf_info_ivtc,
+ &vf_info_ilpack,
NULL
};