diff libmpcodecs/vf.c @ 9933:3548701a13fe

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.
author rfelker
date Sat, 19 Apr 2003 01:39:37 +0000
parents 298e261aecd7
children 89da8ec89558
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Fri Apr 18 22:33:30 2003 +0000
+++ b/libmpcodecs/vf.c	Sat Apr 19 01:39:37 2003 +0000
@@ -63,6 +63,8 @@
 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 @@
     &vf_info_detc,
     &vf_info_telecine,
     &vf_info_tfields,
+    &vf_info_ivtc,
+    &vf_info_ilpack,
     NULL
 };