diff libmpcodecs/vf_format.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 bbb6ebec87a0
children a972c1a4a012
line wrap: on
line diff
--- a/libmpcodecs/vf_format.c	Sun Feb 21 13:38:55 2010 +0000
+++ b/libmpcodecs/vf_format.c	Sun Feb 21 13:40:49 2010 +0000
@@ -46,7 +46,7 @@
     return 0;
 }
 
-static int open(vf_instance_t *vf, char* args){
+static int vf_open(vf_instance_t *vf, char *args){
     vf->query_format=query_format;
     vf->default_caps=0;
     return 1;
@@ -70,7 +70,7 @@
     "format",
     "A'rpi",
     "FIXME! get_image()/put_image()",
-    open,
+    vf_open,
     &vf_opts
 };