comparison libmpcodecs/vf_smartblur.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 0f1b5b68af32
children a972c1a4a012
comparison
equal deleted inserted replaced
30637:0947ead7e81b 30638:a7b908875c14
214 return vf_next_query_format(vf, fmt); 214 return vf_next_query_format(vf, fmt);
215 } 215 }
216 return 0; 216 return 0;
217 } 217 }
218 218
219 static int open(vf_instance_t *vf, char* args){ 219 static int vf_open(vf_instance_t *vf, char *args){
220 int e; 220 int e;
221 221
222 vf->config=config; 222 vf->config=config;
223 vf->put_image=put_image; 223 vf->put_image=put_image;
224 // vf->get_image=get_image; 224 // vf->get_image=get_image;
253 const vf_info_t vf_info_smartblur = { 253 const vf_info_t vf_info_smartblur = {
254 "smart blur", 254 "smart blur",
255 "smartblur", 255 "smartblur",
256 "Michael Niedermayer", 256 "Michael Niedermayer",
257 "", 257 "",
258 open, 258 vf_open,
259 NULL 259 NULL
260 }; 260 };
261 261
262 //===========================================================================// 262 //===========================================================================//