comparison libmpcodecs/vf_boxblur.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
169 return vf_next_query_format(vf, fmt); 169 return vf_next_query_format(vf, fmt);
170 } 170 }
171 return 0; 171 return 0;
172 } 172 }
173 173
174 static int open(vf_instance_t *vf, char* args){ 174 static int vf_open(vf_instance_t *vf, char *args){
175 int e; 175 int e;
176 176
177 vf->config=config; 177 vf->config=config;
178 vf->put_image=put_image; 178 vf->put_image=put_image;
179 // vf->get_image=get_image; 179 // vf->get_image=get_image;
205 const vf_info_t vf_info_boxblur = { 205 const vf_info_t vf_info_boxblur = {
206 "box blur", 206 "box blur",
207 "boxblur", 207 "boxblur",
208 "Michael Niedermayer", 208 "Michael Niedermayer",
209 "", 209 "",
210 open, 210 vf_open,
211 NULL 211 NULL
212 }; 212 };
213 213
214 //===========================================================================// 214 //===========================================================================//