Mercurial > mplayer.hg
diff libmpcodecs/vf.c @ 12225:eb79a6192b2b
New filter by Ville Saari (114263 at foo dot bar dot org)
for removing duplicate frames from telecined video that was
incorrectly deinterlaced. Minor bugfixes added by me.
| author | rfelker |
|---|---|
| date | Sat, 17 Apr 2004 17:08:31 +0000 |
| parents | e34700c872ac |
| children | eeddcef4fb08 |
line wrap: on
line diff
--- a/libmpcodecs/vf.c Sat Apr 17 16:47:52 2004 +0000 +++ b/libmpcodecs/vf.c Sat Apr 17 17:08:31 2004 +0000 @@ -88,6 +88,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; // list of available filters: static vf_info_t* filter_list[]={ @@ -169,6 +170,7 @@ &vf_info_qp, #endif &vf_info_phase, + &vf_info_divtc, NULL };
