summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.c
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-28 04:02:46 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-28 04:02:46 +0000
commit1b253f931b4142cd574554d1b89f2a055df1dce5 (patch)
tree79df16ef1b8d2b7be45ea1cf2e2b3107c6860397 /libmpcodecs/vf.c
parent370a21f1d0c7a574d182ac93c99138fafc7b78ff (diff)
downloadmpv-1b253f931b4142cd574554d1b89f2a055df1dce5.tar.bz2
mpv-1b253f931b4142cd574554d1b89f2a055df1dce5.tar.xz
"hard" frame duplication for mencoder. this finally makes it possible
to generate valid mpeg output from avi's that have duplicate frames in them, or when using inverse telecine filters. to use it, put the "harddup" filter at the end of your filter chain. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12335 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 6b9d33a47f..511d1b1c2a 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -89,6 +89,7 @@ extern vf_info_t vf_info_rgbtest;
extern vf_info_t vf_info_qp;
extern vf_info_t vf_info_phase;
extern vf_info_t vf_info_divtc;
+extern vf_info_t vf_info_harddup;
// list of available filters:
static vf_info_t* filter_list[]={
@@ -171,6 +172,7 @@ static vf_info_t* filter_list[]={
#endif
&vf_info_phase,
&vf_info_divtc,
+ &vf_info_harddup,
NULL
};