From e2a004ad4ef502d43f0628b0618decc679d905ca Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Mon, 9 Feb 2009 14:31:53 +0000 Subject: Prefix visible YUV2RGB functions with sws_ Originally committed as revision 28496 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/yuv2rgb_altivec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libswscale/yuv2rgb_altivec.c') diff --git a/libswscale/yuv2rgb_altivec.c b/libswscale/yuv2rgb_altivec.c index baffbc80a6..a4cdcf898f 100644 --- a/libswscale/yuv2rgb_altivec.c +++ b/libswscale/yuv2rgb_altivec.c @@ -690,7 +690,7 @@ static int altivec_uyvy_rgb32 (SwsContext *c, So we just fall back to the C codes for this. */ -SwsFunc yuv2rgb_init_altivec (SwsContext *c) +SwsFunc sws_yuv2rgb_init_altivec (SwsContext *c) { if (!(c->flags & SWS_CPU_CAPS_ALTIVEC)) return NULL; @@ -750,7 +750,7 @@ SwsFunc yuv2rgb_init_altivec (SwsContext *c) return NULL; } -void yuv2rgb_altivec_init_tables (SwsContext *c, const int inv_table[4],int brightness,int contrast, int saturation) +void sws_yuv2rgb_altivec_init_tables (SwsContext *c, const int inv_table[4],int brightness,int contrast, int saturation) { union { signed short tmp[8] __attribute__ ((aligned(16))); -- cgit v1.2.3