diff options
author | James Almer <jamrial@gmail.com> | 2014-12-19 16:18:43 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-19 20:21:34 +0100 |
commit | a4d62f7775d1785873a5553cf47fa1194ab8521c (patch) | |
tree | f25ab86d56ffeb5b2b4be08e9f74ba241e7ca23b | |
parent | 649c158e8c94ac0cff7f03e97d6ea8bbf71b7f02 (diff) | |
download | ffmpeg-a4d62f7775d1785873a5553cf47fa1194ab8521c.tar.gz |
x86/constants: fix alignment of pw_255
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/constants.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/constants.c b/libavcodec/x86/constants.c index d78b89626c..54acc891c5 100644 --- a/libavcodec/x86/constants.c +++ b/libavcodec/x86/constants.c @@ -40,7 +40,7 @@ DECLARE_ALIGNED(8, const uint64_t, ff_pw_53) = 0x0035003500350035ULL; DECLARE_ALIGNED(16, const xmm_reg, ff_pw_64) = { 0x0040004000400040ULL, 0x0040004000400040ULL }; DECLARE_ALIGNED(8, const uint64_t, ff_pw_96) = 0x0060006000600060ULL; DECLARE_ALIGNED(8, const uint64_t, ff_pw_128) = 0x0080008000800080ULL; -DECLARE_ALIGNED(8, const xmm_reg, ff_pw_255) = { 0x00ff00ff00ff00ffULL, 0x00ff00ff00ff00ffULL }; +DECLARE_ALIGNED(16, const xmm_reg, ff_pw_255) = { 0x00ff00ff00ff00ffULL, 0x00ff00ff00ff00ffULL }; DECLARE_ALIGNED(32, const ymm_reg, ff_pw_256) = { 0x0100010001000100ULL, 0x0100010001000100ULL, 0x0100010001000100ULL, 0x0100010001000100ULL }; DECLARE_ALIGNED(16, const xmm_reg, ff_pw_512) = { 0x0200020002000200ULL, 0x0200020002000200ULL }; |