summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-22 12:38:42 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-22 12:38:42 +0000
commit01669870789ccc72e12dc35bf160fc5a4449883e (patch)
treec1750b3fe742ad421009fa6b8309f8b56e5c1807 /libmpcodecs/vf.c
parent1e12eb7979d009da4f47f93d678635fa2d4275f7 (diff)
downloadmpv-01669870789ccc72e12dc35bf160fc5a4449883e.tar.bz2
mpv-01669870789ccc72e12dc35bf160fc5a4449883e.tar.xz
new filter for dropping (near-)duplicate frames. can be used to fix
movies that were originally telecined but deinterlaced improperly, or to improve quality when encoding at very low bitrates. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10151 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 836b521169..d6f76d056d 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -68,6 +68,7 @@ extern vf_info_t vf_info_tfields;
extern vf_info_t vf_info_ivtc;
extern vf_info_t vf_info_ilpack;
extern vf_info_t vf_info_dsize;
+extern vf_info_t vf_info_decimate;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -125,6 +126,7 @@ static vf_info_t* filter_list[]={
&vf_info_ivtc,
&vf_info_ilpack,
&vf_info_dsize,
+ &vf_info_decimate,
NULL
};