Mercurial > libavcodec.hg
comparison dsputil.h @ 8496:19e2f1a50aa7 libavcodec
consistency cosmetics: Rename POWERPC identifiers to PPC.
author | diego |
---|---|
date | Sat, 27 Dec 2008 11:33:26 +0000 |
parents | c9918d072bdb |
children | 0d5b2b0e7a87 |
comparison
equal
deleted
inserted
replaced
8495:3e0b4e4b7074 | 8496:19e2f1a50aa7 |
---|---|
171 */ | 171 */ |
172 typedef struct ScanTable{ | 172 typedef struct ScanTable{ |
173 const uint8_t *scantable; | 173 const uint8_t *scantable; |
174 uint8_t permutated[64]; | 174 uint8_t permutated[64]; |
175 uint8_t raster_end[64]; | 175 uint8_t raster_end[64]; |
176 #ifdef ARCH_POWERPC | 176 #ifdef ARCH_PPC |
177 /** Used by dct_quantize_altivec to find last-non-zero */ | 177 /** Used by dct_quantize_altivec to find last-non-zero */ |
178 DECLARE_ALIGNED(16, uint8_t, inverse[64]); | 178 DECLARE_ALIGNED(16, uint8_t, inverse[64]); |
179 #endif | 179 #endif |
180 } ScanTable; | 180 } ScanTable; |
181 | 181 |
614 #ifdef HAVE_NEON | 614 #ifdef HAVE_NEON |
615 # define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v) | 615 # define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v) |
616 # define STRIDE_ALIGN 16 | 616 # define STRIDE_ALIGN 16 |
617 #endif | 617 #endif |
618 | 618 |
619 #elif defined(ARCH_POWERPC) | 619 #elif defined(ARCH_PPC) |
620 | 620 |
621 extern int mm_flags; | 621 extern int mm_flags; |
622 | 622 |
623 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v) | 623 #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v) |
624 #define STRIDE_ALIGN 16 | 624 #define STRIDE_ALIGN 16 |