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_rotate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmpcodecs/vf_rotate.c') diff --git a/libmpcodecs/vf_rotate.c b/libmpcodecs/vf_rotate.c index 04095da5f5..ca470ef51d 100644 --- a/libmpcodecs/vf_rotate.c +++ b/libmpcodecs/vf_rotate.c @@ -131,7 +131,7 @@ static int query_format(struct vf_instance_s* vf, unsigned int fmt){ return 0; } -static int open(vf_instance_t *vf, char* args){ +static int vf_open(vf_instance_t *vf, char *args){ vf->config=config; vf->put_image=put_image; vf->query_format=query_format; @@ -145,7 +145,7 @@ const vf_info_t vf_info_rotate = { "rotate", "A'rpi", "", - open, + vf_open, NULL }; -- cgit v1.2.3