# HG changeset patch # User aurel # Date 1204655712 0 # Node ID b6d05f8827cd8f82b1d848a69040ae46653c9465 # Parent 8cb7a8f13c2c9ab64bde0b5be978905a752ecd32 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... diff -r 8cb7a8f13c2c -r b6d05f8827cd dsputil.h --- a/dsputil.h Tue Mar 04 10:54:51 2008 +0000 +++ b/dsputil.h Tue Mar 04 18:35:12 2008 +0000 @@ -162,7 +162,7 @@ uint8_t raster_end[64]; #ifdef ARCH_POWERPC /** 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 } ScanTable;