diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-15 17:00:41 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-22 18:02:24 -0800 |
commit | 2e4bb99f4df7052b3e147ee898fcb4013a34d904 (patch) | |
tree | e4747b0767cf4b707fcf8730fd20da42f98310e7 /libavcodec/x86/dsputil_mmx.c | |
parent | 0ee8293a77a6afad161e91ce1d43c4a57ce33a6a (diff) | |
download | ffmpeg-2e4bb99f4df7052b3e147ee898fcb4013a34d904.tar.gz |
vorbisdsp: convert x86 simd functions from inline asm to yasm.
Diffstat (limited to 'libavcodec/x86/dsputil_mmx.c')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index 65247c0016..9a282e8dfb 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -38,9 +38,6 @@ DECLARE_ALIGNED(8, const uint64_t, ff_bone) = 0x0101010101010101ULL; DECLARE_ALIGNED(8, const uint64_t, ff_wtwo) = 0x0002000200020002ULL; -DECLARE_ALIGNED(16, const uint64_t, ff_pdw_80000000)[2] = - { 0x8000000080000000ULL, 0x8000000080000000ULL }; - DECLARE_ALIGNED(16, const xmm_reg, ff_pw_1) = { 0x0001000100010001ULL, 0x0001000100010001ULL }; DECLARE_ALIGNED(16, const xmm_reg, ff_pw_2) = { 0x0002000200020002ULL, 0x0002000200020002ULL }; DECLARE_ALIGNED(16, const xmm_reg, ff_pw_3) = { 0x0003000300030003ULL, 0x0003000300030003ULL }; |