Mercurial > mplayer.hg
diff libmpcodecs/vf.c @ 5539:eefc339440bc
2 new simple filters: yuy2 and format
| author | arpi |
|---|---|
| date | Tue, 09 Apr 2002 14:01:53 +0000 |
| parents | 3cd118559307 |
| children | 7d1dfb59c6c0 |
line wrap: on
line diff
--- a/libmpcodecs/vf.c Tue Apr 09 13:18:45 2002 +0000 +++ b/libmpcodecs/vf.c Tue Apr 09 14:01:53 2002 +0000 @@ -15,6 +15,8 @@ extern vf_info_t vf_info_pp; extern vf_info_t vf_info_scale; extern vf_info_t vf_info_fame; +extern vf_info_t vf_info_format; +extern vf_info_t vf_info_yuy2; char** vo_plugin_args=(char**) NULL; @@ -27,6 +29,8 @@ // &vf_info_osd, &vf_info_vo, &vf_info_fame, + &vf_info_format, + &vf_info_yuy2, NULL };
