comparison libmpcodecs/vf.c @ 10809:304c94c89359

simple logo remover
author henry
date Wed, 03 Sep 2003 22:44:28 +0000
parents 81d03cb2cd64
children 1ed8e514c725
comparison
equal deleted inserted replaced
10808:9883dfced49c 10809:304c94c89359
72 extern vf_info_t vf_info_decimate; 72 extern vf_info_t vf_info_decimate;
73 extern vf_info_t vf_info_softpulldown; 73 extern vf_info_t vf_info_softpulldown;
74 extern vf_info_t vf_info_pullup; 74 extern vf_info_t vf_info_pullup;
75 extern vf_info_t vf_info_framestep; 75 extern vf_info_t vf_info_framestep;
76 extern vf_info_t vf_info_tile; 76 extern vf_info_t vf_info_tile;
77 extern vf_info_t vf_info_delogo;
77 78
78 // list of available filters: 79 // list of available filters:
79 static vf_info_t* filter_list[]={ 80 static vf_info_t* filter_list[]={
80 &vf_info_rectangle, 81 &vf_info_rectangle,
81 #ifndef HAVE_NO_POSIX_SELECT 82 #ifndef HAVE_NO_POSIX_SELECT
135 &vf_info_decimate, 136 &vf_info_decimate,
136 &vf_info_softpulldown, 137 &vf_info_softpulldown,
137 &vf_info_pullup, 138 &vf_info_pullup,
138 &vf_info_framestep, 139 &vf_info_framestep,
139 &vf_info_tile, 140 &vf_info_tile,
141 &vf_info_delogo,
140 NULL 142 NULL
141 }; 143 };
142 144
143 // For the vf option 145 // For the vf option
144 m_obj_settings_t* vf_settings = NULL; 146 m_obj_settings_t* vf_settings = NULL;