Commit a51e955a authored by aurel's avatar aurel

Fix compilation on powerpc.

DECLARE_ALIGNED_8 is not defined at that point, but this code is powerpc
only, so it's really equivalent to DECLARE_ALIGNED(16...


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12313 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5be17869
...@@ -162,7 +162,7 @@ typedef struct ScanTable{ ...@@ -162,7 +162,7 @@ typedef struct ScanTable{
uint8_t raster_end[64]; uint8_t raster_end[64];
#ifdef ARCH_POWERPC #ifdef ARCH_POWERPC
/** Used by dct_quantize_altivec to find last-non-zero */ /** Used by dct_quantize_altivec to find last-non-zero */
DECLARE_ALIGNED_8(uint8_t, inverse[64]); DECLARE_ALIGNED(16, uint8_t, inverse[64]);
#endif #endif
} ScanTable; } ScanTable;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment