Mercurial > mplayer.hg
diff libmpcodecs/vf.c @ 12334:eeddcef4fb08
"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.
| author | rfelker |
|---|---|
| date | Wed, 28 Apr 2004 04:02:46 +0000 |
| parents | eb79a6192b2b |
| children | 6f1b4c989914 |
line wrap: on
line diff
--- a/libmpcodecs/vf.c Wed Apr 28 03:19:35 2004 +0000 +++ b/libmpcodecs/vf.c Wed Apr 28 04:02:46 2004 +0000 @@ -89,6 +89,7 @@ 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 @@ #endif &vf_info_phase, &vf_info_divtc, + &vf_info_harddup, NULL };
