diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-27 11:33:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-27 11:33:54 +0000 |
commit | cb82a0736d45a51793e4bd8c7b74cf11d1dc1b86 (patch) | |
tree | 0038a6431fa31774845d0ce248f77511d270ec05 | |
parent | 79cb09b2f76c86dc988a5eba33b0cf8bd08a9b0e (diff) | |
download | ffmpeg-cb82a0736d45a51793e4bd8c7b74cf11d1dc1b86.tar.gz |
consistency cosmetics: Rename POWERPC identifiers to PPC.
Originally committed as revision 28194 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 577d09333e..dabc7c4962 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -949,11 +949,11 @@ static inline void yuv2rgbXinC_full(SwsContext *c, int16_t *lumFilter, int16_t * #define COMPILE_C #endif -#ifdef ARCH_POWERPC +#ifdef ARCH_PPC #if (defined (HAVE_ALTIVEC) || defined (RUNTIME_CPUDETECT)) && defined (CONFIG_GPL) #define COMPILE_ALTIVEC #endif //HAVE_ALTIVEC -#endif //ARCH_POWERPC +#endif //ARCH_PPC #if defined(ARCH_X86) @@ -1628,7 +1628,7 @@ static SwsFunc getSwsFunc(int flags){ return swScale_C; #else -#ifdef ARCH_POWERPC +#ifdef ARCH_PPC if (flags & SWS_CPU_CAPS_ALTIVEC) return swScale_altivec; else |