summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-11 20:04:30 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-11 20:04:30 +0000
commit1e87b4bbaa5dbc2ab0e8c8084ecece30ada91ddc (patch)
tree37ae3a0207e35d78d2f21cfb7ea012dd515408e2 /libmpcodecs/vf.c
parent7aa3b58b98dd44a4129cb79bc51d2eea3846bf4e (diff)
downloadmpv-1e87b4bbaa5dbc2ab0e8c8084ecece30ada91ddc.tar.bz2
mpv-1e87b4bbaa5dbc2ab0e8c8084ecece30ada91ddc.tar.xz
'tinterlace' filter (partial inverse of tfields) by Not Zed <notzed@ximian.com> (with minor fixes for current cvs by me)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10572 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf.c')
-rw-r--r--libmpcodecs/vf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index 493696be90..861b128ec7 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -64,6 +64,7 @@ extern vf_info_t vf_info_denoise3d;
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_tinterlace;
extern vf_info_t vf_info_tfields;
extern vf_info_t vf_info_ivtc;
extern vf_info_t vf_info_ilpack;
@@ -123,6 +124,7 @@ static vf_info_t* filter_list[]={
&vf_info_hqdn3d,
&vf_info_detc,
&vf_info_telecine,
+ &vf_info_tinterlace,
&vf_info_tfields,
&vf_info_ivtc,
&vf_info_ilpack,