summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-18 15:24:08 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-18 15:24:08 +0000
commit0a378573a8de671e6a5735f78a982d81946cdf7b (patch)
tree664be11ac552e8f9cdd30218a204906fe0685a5a /libmpcodecs/vf.c
parent48ecb3e717979195d45c691366da422fb7b06f90 (diff)
downloadmpv-0a378573a8de671e6a5735f78a982d81946cdf7b.tar.bz2
mpv-0a378573a8de671e6a5735f78a982d81946cdf7b.tar.xz
pullup -- third generation inverse telecine engine. the backend
(pullup.[ch]) is not mplayer-specific and is designed to work well with g2; vf_pullup.c is the g1 wrapper. see man page for details, and keep in mind, this is a work in progress. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10665 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 d50e52aeec..c3bea5629f 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -71,6 +71,7 @@ extern vf_info_t vf_info_ilpack;
extern vf_info_t vf_info_dsize;
extern vf_info_t vf_info_decimate;
extern vf_info_t vf_info_softpulldown;
+extern vf_info_t vf_info_pullup;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -131,6 +132,7 @@ static vf_info_t* filter_list[]={
&vf_info_dsize,
&vf_info_decimate,
&vf_info_softpulldown,
+ &vf_info_pullup,
NULL
};