[FFmpeg-cvslog] r11874 - trunk/libavcodec/i386/dsputil_mmx.c
lorenm
subversion
Wed Feb 6 04:51:53 CET 2008
Author: lorenm
Date: Wed Feb 6 04:51:53 2008
New Revision: 11874
Log:
constant was excessively aligned
Modified:
trunk/libavcodec/i386/dsputil_mmx.c
Modified: trunk/libavcodec/i386/dsputil_mmx.c
==============================================================================
--- trunk/libavcodec/i386/dsputil_mmx.c (original)
+++ trunk/libavcodec/i386/dsputil_mmx.c Wed Feb 6 04:51:53 2008
@@ -58,7 +58,7 @@ DECLARE_ALIGNED_16(const xmm_t, ff_pw
DECLARE_ALIGNED_8 (const uint64_t, ff_pw_42 ) = 0x002A002A002A002AULL;
DECLARE_ALIGNED_8 (const uint64_t, ff_pw_64 ) = 0x0040004000400040ULL;
DECLARE_ALIGNED_8 (const uint64_t, ff_pw_96 ) = 0x0060006000600060ULL;
-DECLARE_ALIGNED_16(const uint64_t, ff_pw_128) = 0x0080008000800080ULL;
+DECLARE_ALIGNED_8 (const uint64_t, ff_pw_128) = 0x0080008000800080ULL;
DECLARE_ALIGNED_8 (const uint64_t, ff_pb_1 ) = 0x0101010101010101ULL;
DECLARE_ALIGNED_8 (const uint64_t, ff_pb_3 ) = 0x0303030303030303ULL;
More information about the ffmpeg-cvslog
mailing list