summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2008-03-04 18:35:12 +0000
committerAurelien Jacobs <aurel@gnuage.org>2008-03-04 18:35:12 +0000
commit49c35f16fccf7c2c2c14a7524467bb3603d283a2 (patch)
tree19fa1e7474790ef7bca4f60c042915abeaf8e095 /libavcodec/dsputil.h
parent015d0bb95cf4fbabb25ec732b890f95d41b0653d (diff)
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
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index ad258666c6..bde3a1cf52 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;