summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-31 21:41:24 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-31 21:41:24 +0000
commit280fa83b42a8f5b605944e5462ace3d91af05c48 (patch)
treec26542ed03dff08ff14e0f694bd65a30fd1d299f /libmpcodecs/vf.c
parent9bae6276a6aaa34e1c41bf2b8c8e367fc562d824 (diff)
downloadmpv-280fa83b42a8f5b605944e5462ace3d91af05c48.tar.bz2
mpv-280fa83b42a8f5b605944e5462ace3d91af05c48.tar.xz
2 new filters: tile & framestep
patch by Daniele Forghieri ( guru@digitalfantasy.it ) (little cleanup by me) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10752 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 c3bea5629f..4447595820 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -72,6 +72,8 @@ 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;
+extern vf_info_t vf_info_framestep;
+extern vf_info_t vf_info_tile;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -133,6 +135,8 @@ static vf_info_t* filter_list[]={
&vf_info_decimate,
&vf_info_softpulldown,
&vf_info_pullup,
+ &vf_info_framestep,
+ &vf_info_tile,
NULL
};