diff libmpcodecs/vf.c @ 6859:ed26b2d781e9

new filter to use libavcodec's deinterlacer patch by Joe Rabinoff <rabinoff@fas.harvard.edu> (TODO: DOCS, DR1)
author arpi
date Wed, 31 Jul 2002 19:50:42 +0000
parents a99c7700e4f1
children 255b150a75a5
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Wed Jul 31 19:40:33 2002 +0000
+++ b/libmpcodecs/vf.c	Wed Jul 31 19:50:42 2002 +0000
@@ -35,6 +35,7 @@
 extern vf_info_t vf_info_test;
 extern vf_info_t vf_info_noise;
 extern vf_info_t vf_info_yvu9;
+extern vf_info_t vf_info_lavcdeint;
 
 char** vo_plugin_args=(char**) NULL;
 
@@ -59,6 +60,7 @@
     &vf_info_palette,
 #ifdef USE_LIBAVCODEC
     &vf_info_lavc,
+    &vf_info_lavcdeint,
 #endif
     &vf_info_dvbscale,
     &vf_info_cropdetect,