diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-05 15:17:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-05 15:28:10 +0200 |
commit | c88e60af76ad6cf3b193a7f160256061b085125e (patch) | |
tree | 2b0aed7bd2d59c79d00aa9564ef5ec987dc94f9e /libswresample/x86/audio_convert.asm | |
parent | 03481028358dcfeb29489034c844b6ecdb41e033 (diff) | |
download | ffmpeg-c88e60af76ad6cf3b193a7f160256061b085125e.tar.gz |
swr/x86: 10l, missed some SSE2 instructions in code marked as SSE.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/x86/audio_convert.asm')
-rw-r--r-- | libswresample/x86/audio_convert.asm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libswresample/x86/audio_convert.asm b/libswresample/x86/audio_convert.asm index 6fc86f0748..fcf856f942 100644 --- a/libswresample/x86/audio_convert.asm +++ b/libswresample/x86/audio_convert.asm @@ -377,7 +377,7 @@ CONV int16, int32, a, 1, 2, INT32_TO_INT16_N, NOP_N PACK_6CH float, float, u, 2, 2, NOP_N, NOP_N PACK_6CH float, float, a, 2, 2, NOP_N, NOP_N -INIT_XMM sse +INIT_XMM sse2 CONV int32, int16, u, 2, 1, INT16_TO_INT32_N, NOP_N CONV int32, int16, a, 2, 1, INT16_TO_INT32_N, NOP_N CONV int16, int32, u, 1, 2, INT32_TO_INT16_N, NOP_N @@ -401,7 +401,6 @@ UNPACK_2CH int32, int16, a, 2, 1, INT16_TO_INT32_N, NOP_N UNPACK_2CH int16, int32, u, 1, 2, INT32_TO_INT16_N, NOP_N UNPACK_2CH int16, int32, a, 1, 2, INT32_TO_INT16_N, NOP_N -INIT_XMM sse2 CONV float, int32, u, 2, 2, INT32_TO_FLOAT_N, INT32_TO_FLOAT_INIT CONV float, int32, a, 2, 2, INT32_TO_FLOAT_N, INT32_TO_FLOAT_INIT CONV int32, float, u, 2, 2, FLOAT_TO_INT32_N, FLOAT_TO_INT32_INIT |