[FFmpeg-cvslog] r12313 - trunk/libavcodec/dsputil.h

aurel subversion
Tue Mar 4 19:35:12 CET 2008


Author: aurel
Date: Tue Mar  4 19:35:12 2008
New Revision: 12313

Log:
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...


Modified:
   trunk/libavcodec/dsputil.h

Modified: trunk/libavcodec/dsputil.h
==============================================================================
--- trunk/libavcodec/dsputil.h	(original)
+++ trunk/libavcodec/dsputil.h	Tue Mar  4 19:35:12 2008
@@ -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;
 




More information about the ffmpeg-cvslog mailing list