diff libswscale/yuv2rgb_altivec.c @ 28953:1e56ea9937ce

Consistently use ff_ prefixes for internal symbols.
author diego
date Wed, 18 Mar 2009 08:06:08 +0000
parents d6b317bddd62
children
line wrap: on
line diff
--- a/libswscale/yuv2rgb_altivec.c	Wed Mar 18 00:17:26 2009 +0000
+++ b/libswscale/yuv2rgb_altivec.c	Wed Mar 18 08:06:08 2009 +0000
@@ -690,7 +690,7 @@
 
    So we just fall back to the C codes for this.
 */
-SwsFunc sws_yuv2rgb_init_altivec (SwsContext *c)
+SwsFunc ff_yuv2rgb_init_altivec(SwsContext *c)
 {
     if (!(c->flags & SWS_CPU_CAPS_ALTIVEC))
         return NULL;
@@ -750,7 +750,7 @@
     return NULL;
 }
 
-void sws_yuv2rgb_altivec_init_tables (SwsContext *c, const int inv_table[4],int brightness,int contrast, int saturation)
+void ff_yuv2rgb_init_tables_altivec(SwsContext *c, const int inv_table[4], int brightness, int contrast, int saturation)
 {
     union {
         signed short tmp[8] __attribute__ ((aligned(16)));
@@ -786,7 +786,7 @@
 
 
 void
-altivec_yuv2packedX (SwsContext *c,
+ff_yuv2packedX_altivec(SwsContext *c,
                      int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize,
                      int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize,
                      uint8_t *dest, int dstW, int dstY)