Mercurial > mplayer.hg
diff libmpcodecs/vf.c @ 10751:81d03cb2cd64
2 new filters: tile & framestep
patch by Daniele Forghieri ( guru@digitalfantasy.it )
(little cleanup by me)
| author | arpi |
|---|---|
| date | Sun, 31 Aug 2003 21:41:24 +0000 |
| parents | d47ca466c97b |
| children | 304c94c89359 |
line wrap: on
line diff
--- a/libmpcodecs/vf.c Sun Aug 31 21:39:17 2003 +0000 +++ b/libmpcodecs/vf.c Sun Aug 31 21:41:24 2003 +0000 @@ -72,6 +72,8 @@ extern vf_info_t vf_info_decimate; extern vf_info_t vf_info_softpulldown; extern vf_info_t vf_info_pullup; +extern vf_info_t vf_info_framestep; +extern vf_info_t vf_info_tile; // list of available filters: static vf_info_t* filter_list[]={ @@ -133,6 +135,8 @@ &vf_info_decimate, &vf_info_softpulldown, &vf_info_pullup, + &vf_info_framestep, + &vf_info_tile, NULL };
