diff libswscale/yuv2rgb_altivec.c @ 28461:75586eb0750d

Prefix visible YUV2RGB functions with sws_
author kostya
date Mon, 09 Feb 2009 14:31:53 +0000
parents e9e41961f16e
children 61e4dbf0da9e
line wrap: on
line diff
--- a/libswscale/yuv2rgb_altivec.c	Mon Feb 09 14:17:30 2009 +0000
+++ b/libswscale/yuv2rgb_altivec.c	Mon Feb 09 14:31:53 2009 +0000
@@ -690,7 +690,7 @@
 
    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 @@
     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)));