comparison libmpcodecs/vf_pp.c @ 30638:a7b908875c14

Rename open() vf initialization function to vf_open(). This avoids clashes with fcntl.h under certain circumstances.
author diego
date Sun, 21 Feb 2010 13:40:49 +0000
parents 32725ca88fed
children a972c1a4a012
comparison
equal deleted inserted replaced
30637:0947ead7e81b 30638:a7b908875c14
167 IMGFMT_422P, 167 IMGFMT_422P,
168 IMGFMT_411P, 168 IMGFMT_411P,
169 0 169 0
170 }; 170 };
171 171
172 static int open(vf_instance_t *vf, char* args){ 172 static int vf_open(vf_instance_t *vf, char *args){
173 char *endptr, *name; 173 char *endptr, *name;
174 int i; 174 int i;
175 int hex_mode=0; 175 int hex_mode=0;
176 176
177 vf->query_format=query_format; 177 vf->query_format=query_format;
235 const vf_info_t vf_info_pp = { 235 const vf_info_t vf_info_pp = {
236 "postprocessing", 236 "postprocessing",
237 "pp", 237 "pp",
238 "A'rpi", 238 "A'rpi",
239 "", 239 "",
240 open, 240 vf_open,
241 NULL 241 NULL
242 }; 242 };
243 243
244 //===========================================================================// 244 //===========================================================================//