summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_tile.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-21 13:40:49 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-21 13:40:49 +0000
commit28cf6ea2be72588dba3b35db864bf63182d1b17f (patch)
tree17fa39add38a779d5d70e7593fc9b6a7f75a27fe /libmpcodecs/vf_tile.c
parent88f86bcc4d1863fdbbe0843229e1e97db61f0850 (diff)
downloadmpv-28cf6ea2be72588dba3b35db864bf63182d1b17f.tar.bz2
mpv-28cf6ea2be72588dba3b35db864bf63182d1b17f.tar.xz
Rename open() vf initialization function to vf_open().
This avoids clashes with fcntl.h under certain circumstances. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30680 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf_tile.c')
-rw-r--r--libmpcodecs/vf_tile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpcodecs/vf_tile.c b/libmpcodecs/vf_tile.c
index bfbf030697..3cc6d77cb1 100644
--- a/libmpcodecs/vf_tile.c
+++ b/libmpcodecs/vf_tile.c
@@ -231,7 +231,7 @@ static int query_format(struct vf_instance_s* vf, unsigned int fmt)
* If the value is less then 0 def_val is used.
* Return 0 for ok
*
- * Look below ( in open(...) ) for a use ...
+ * Look below ( in vf_open(...) ) for a use ...
*/
static int parse_int(char **s, int *rt, int def_val)
{
@@ -266,7 +266,7 @@ static int parse_int(char **s, int *rt, int def_val)
}
/* Main entry funct for the filter */
-static int open(vf_instance_t *vf, char* args)
+static int vf_open(vf_instance_t *vf, char *args)
{
struct vf_priv_s *p;
int er;
@@ -323,6 +323,6 @@ const vf_info_t vf_info_tile = {
"tile",
"Daniele Forghieri",
"",
- open,
+ vf_open,
NULL
};