diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-18 22:14:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-18 22:14:57 +0000 |
commit | c5fec7d76c6bae70aa0f700a86f43d45337e8a92 (patch) | |
tree | 386e179b0f4776170c84242acf10669369c9e930 | |
parent | 0866c56f0abf0bac5df7e67eb9a65e8f1e8c4372 (diff) | |
download | ffmpeg-c5fec7d76c6bae70aa0f700a86f43d45337e8a92.tar.gz |
Remove redundant ARCH_POWERPC #ifdef around HAVE_ALTIVEC.
Originally committed as revision 26264 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index e6cb3f4c8f..82533b494e 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -913,14 +913,12 @@ static inline void yuv2packedXinC(SwsContext *c, int16_t *lumFilter, int16_t **l #include "swscale_template.c" #endif -#ifdef ARCH_POWERPC #ifdef COMPILE_ALTIVEC #undef RENAME #define HAVE_ALTIVEC #define RENAME(a) a ## _altivec #include "swscale_template.c" #endif -#endif //ARCH_POWERPC #if defined(ARCH_X86) |