summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-06 00:11:13 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-06 00:11:13 +0000
commitf31bc72365d6218cc0a02ae8f2fab7c77060f58d (patch)
treec5663809641e5776a58d509b9a735ec5bd84549e /libmpcodecs/vf.c
parentcf063c0e6fcdda1ea450224c7db181a87a4b6f6e (diff)
downloadmpv-f31bc72365d6218cc0a02ae8f2fab7c77060f58d.tar.bz2
mpv-f31bc72365d6218cc0a02ae8f2fab7c77060f58d.tar.xz
Motion compensating deinterlacer
note, the code could probably benefit from some finetuning / experimentation in case anyone is bored ... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18591 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 a9bff4b771..bddbfe3e06 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -100,6 +100,7 @@ extern vf_info_t vf_info_divtc;
extern vf_info_t vf_info_harddup;
extern vf_info_t vf_info_softskip;
extern vf_info_t vf_info_screenshot;
+extern vf_info_t vf_info_mcdeint;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -191,6 +192,9 @@ static vf_info_t* filter_list[]={
#ifdef HAVE_PNG
&vf_info_screenshot,
#endif
+#ifdef USE_LIBAVCODEC
+ &vf_info_mcdeint,
+#endif
NULL
};