comparison 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
comparison
equal deleted inserted replaced
5538:70725449c947 5539:eefc339440bc
13 extern vf_info_t vf_info_crop; 13 extern vf_info_t vf_info_crop;
14 extern vf_info_t vf_info_expand; 14 extern vf_info_t vf_info_expand;
15 extern vf_info_t vf_info_pp; 15 extern vf_info_t vf_info_pp;
16 extern vf_info_t vf_info_scale; 16 extern vf_info_t vf_info_scale;
17 extern vf_info_t vf_info_fame; 17 extern vf_info_t vf_info_fame;
18 extern vf_info_t vf_info_format;
19 extern vf_info_t vf_info_yuy2;
18 20
19 char** vo_plugin_args=(char**) NULL; 21 char** vo_plugin_args=(char**) NULL;
20 22
21 // list of available filters: 23 // list of available filters:
22 static vf_info_t* filter_list[]={ 24 static vf_info_t* filter_list[]={
25 &vf_info_pp, 27 &vf_info_pp,
26 &vf_info_scale, 28 &vf_info_scale,
27 // &vf_info_osd, 29 // &vf_info_osd,
28 &vf_info_vo, 30 &vf_info_vo,
29 &vf_info_fame, 31 &vf_info_fame,
32 &vf_info_format,
33 &vf_info_yuy2,
30 NULL 34 NULL
31 }; 35 };
32 36
33 //============================================================================ 37 //============================================================================
34 38