summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf.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.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.c')
-rw-r--r--libmpcodecs/vf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index e6611efeb8..44c5312a34 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -464,7 +464,7 @@ vf_instance_t* vf_open_plugin(const vf_info_t* const* filter_list, vf_instance_t
args = (char**)args[1];
else
args = NULL;
- if(vf->info->open(vf,(char*)args)>0) return vf; // Success!
+ if(vf->info->vf_open(vf,(char*)args)>0) return vf; // Success!
free(vf);
mp_msg(MSGT_VFILTER,MSGL_ERR,MSGTR_CouldNotOpenVideoFilter,name);
return NULL;