[FFmpeg-cvslog] r19711 - trunk/libavcodec/dsputil.c
reimar
subversion
Wed Aug 26 11:10:52 CEST 2009
Author: reimar
Date: Wed Aug 26 11:10:51 2009
New Revision: 19711
Log:
100l, inv_zigzag_direct16 must be aligned to 16 bytes for dct_quantize_SSE2
(which uses movdqa to xmm1 on inv_zigzag_direct16).
Modified:
trunk/libavcodec/dsputil.c
Modified: trunk/libavcodec/dsputil.c
==============================================================================
--- trunk/libavcodec/dsputil.c Wed Aug 26 10:43:11 2009 (r19710)
+++ trunk/libavcodec/dsputil.c Wed Aug 26 11:10:51 2009 (r19711)
@@ -86,7 +86,7 @@ const uint8_t ff_zigzag248_direct[64] =
};
/* not permutated inverse zigzag_direct + 1 for MMX quantizer */
-DECLARE_ALIGNED_8(uint16_t, inv_zigzag_direct16[64]);
+DECLARE_ALIGNED_16(uint16_t, inv_zigzag_direct16[64]);
const uint8_t ff_alternate_horizontal_scan[64] = {
0, 1, 2, 3, 8, 9, 16, 17,
More information about the ffmpeg-cvslog
mailing list