Browse Source

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
tags/v0.5
Aurelien Jacobs 17 years ago
parent
commit
49c35f16fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dsputil.h

+ 1
- 1
libavcodec/dsputil.h View File

@@ -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;



Loading…
Cancel
Save