Mercurial > mplayer.hg
diff libmpcodecs/vf.c @ 10150:b34ede44dada
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.
| author | rfelker |
|---|---|
| date | Thu, 22 May 2003 12:38:42 +0000 |
| parents | 30cad6ad9dbc |
| children | 377b04e2ae1a |
line wrap: on
line diff
--- a/libmpcodecs/vf.c Thu May 22 07:49:48 2003 +0000 +++ b/libmpcodecs/vf.c Thu May 22 12:38:42 2003 +0000 @@ -68,6 +68,7 @@ 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 @@ &vf_info_ivtc, &vf_info_ilpack, &vf_info_dsize, + &vf_info_decimate, NULL };
