[FFmpeg-cvslog] r26344 - trunk/libavcodec/x86/dsputil_mmx.c
rbultje
subversion
Sat Jan 15 00:26:35 CET 2011
Author: rbultje
Date: Sat Jan 15 00:26:34 2011
New Revision: 26344
Log:
Fix ff_pw_3 alignment.
Modified:
trunk/libavcodec/x86/dsputil_mmx.c
Modified: trunk/libavcodec/x86/dsputil_mmx.c
==============================================================================
--- trunk/libavcodec/x86/dsputil_mmx.c Fri Jan 14 23:36:23 2011 (r26343)
+++ trunk/libavcodec/x86/dsputil_mmx.c Sat Jan 15 00:26:34 2011 (r26344)
@@ -42,7 +42,7 @@ DECLARE_ALIGNED(16, const uint64_t, ff_p
{0x8000000080000000ULL, 0x8000000080000000ULL};
DECLARE_ALIGNED(8, const uint64_t, ff_pw_1 ) = 0x0001000100010001ULL;
-DECLARE_ALIGNED(8, const xmm_reg, ff_pw_3 ) = {0x0003000300030003ULL, 0x0003000300030003ULL};
+DECLARE_ALIGNED(16, const xmm_reg, ff_pw_3 ) = {0x0003000300030003ULL, 0x0003000300030003ULL};
DECLARE_ALIGNED(16, const xmm_reg, ff_pw_4 ) = {0x0004000400040004ULL, 0x0004000400040004ULL};
DECLARE_ALIGNED(16, const xmm_reg, ff_pw_5 ) = {0x0005000500050005ULL, 0x0005000500050005ULL};
DECLARE_ALIGNED(16, const xmm_reg, ff_pw_8 ) = {0x0008000800080008ULL, 0x0008000800080008ULL};
More information about the ffmpeg-cvslog
mailing list