From 28cf6ea2be72588dba3b35db864bf63182d1b17f Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 21 Feb 2010 13:40:49 +0000 Subject: 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 --- libmpcodecs/vf_remove_logo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmpcodecs/vf_remove_logo.c') diff --git a/libmpcodecs/vf_remove_logo.c b/libmpcodecs/vf_remove_logo.c index d974ad85c5..5d8290baed 100644 --- a/libmpcodecs/vf_remove_logo.c +++ b/libmpcodecs/vf_remove_logo.c @@ -828,7 +828,7 @@ static int query_format(struct vf_instance_s * vf, unsigned int fmt) * * This sets up our instance variables and parses the arguments to the filter. */ -static int open(vf_instance_t * vf, char * args) +static int vf_open(vf_instance_t *vf, char *args) { vf->priv = safe_malloc(sizeof(vf_priv_s)); @@ -898,7 +898,7 @@ const vf_info_t vf_info_remove_logo = { "remove-logo", "Robert Edele", "", - open, + vf_open, NULL }; -- cgit v1.2.3