diff options
author | David Conrad <lessen42@gmail.com> | 2008-08-30 19:40:21 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-08-30 19:40:21 +0000 |
commit | 21383da8c4b85ce286fb27052a88926cec67c28e (patch) | |
tree | f0239f22cf47476dbbefddebe998f1f904651dde /libavcodec/i386 | |
parent | ea364c74a00d87fa2e8482c6563da06f1e522f39 (diff) | |
download | ffmpeg-21383da8c4b85ce286fb27052a88926cec67c28e.tar.gz |
Let ff_pw_8 be used as an SSE constant
Originally committed as revision 15052 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 | ||||
-rw-r--r-- | libavcodec/i386/dsputil_mmx.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 0ff06d48cb..41aadc6119 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -48,7 +48,7 @@ DECLARE_ALIGNED_16(const uint64_t, ff_pdw_80000000[2]) = DECLARE_ALIGNED_8 (const uint64_t, ff_pw_3 ) = 0x0003000300030003ULL; DECLARE_ALIGNED_8 (const uint64_t, ff_pw_4 ) = 0x0004000400040004ULL; DECLARE_ALIGNED_16(const xmm_t, ff_pw_5 ) = {0x0005000500050005ULL, 0x0005000500050005ULL}; -DECLARE_ALIGNED_8 (const uint64_t, ff_pw_8 ) = 0x0008000800080008ULL; +DECLARE_ALIGNED_16(const xmm_t, ff_pw_8 ) = {0x0008000800080008ULL, 0x0008000800080008ULL}; DECLARE_ALIGNED_8 (const uint64_t, ff_pw_15 ) = 0x000F000F000F000FULL; DECLARE_ALIGNED_16(const xmm_t, ff_pw_16 ) = {0x0010001000100010ULL, 0x0010001000100010ULL}; DECLARE_ALIGNED_8 (const uint64_t, ff_pw_20 ) = 0x0014001400140014ULL; diff --git a/libavcodec/i386/dsputil_mmx.h b/libavcodec/i386/dsputil_mmx.h index d944dbd43c..a4b3bfcdac 100644 --- a/libavcodec/i386/dsputil_mmx.h +++ b/libavcodec/i386/dsputil_mmx.h @@ -35,7 +35,7 @@ extern const uint64_t ff_pdw_80000000[2]; extern const uint64_t ff_pw_3; extern const uint64_t ff_pw_4; extern const xmm_t ff_pw_5; -extern const uint64_t ff_pw_8; +extern const xmm_t ff_pw_8; extern const uint64_t ff_pw_15; extern const xmm_t ff_pw_16; extern const uint64_t ff_pw_20; |