From 49c35f16fccf7c2c2c14a7524467bb3603d283a2 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Tue, 4 Mar 2008 18:35:12 +0000 Subject: 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... Originally committed as revision 12313 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index ad25866..bde3a1c 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -162,7 +162,7 @@ typedef struct ScanTable{ 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; -- cgit v1.1