Mercurial > libavcodec.hg
changeset 6440:b6d05f8827cd libavcodec
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...
author | aurel |
---|---|
date | Tue, 04 Mar 2008 18:35:12 +0000 |
parents | 8cb7a8f13c2c |
children | 0cc3651e0bb2 |
files | dsputil.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;