diff options
author | Christophe GISQUET <christophe.gisquet@gmail.com> | 2012-03-21 20:46:29 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-04-04 11:24:27 -0700 |
commit | 6b81da2fd030dbc03d36b38558b58e8f0f667501 (patch) | |
tree | 7f09ede157249c09a02c1d84c58fa92a06c5289f /libavcodec/x86/sbrdsp.asm | |
parent | cd88105f6fddf04fb04fe6c57cbaac5f6037c6a6 (diff) | |
download | ffmpeg-6b81da2fd030dbc03d36b38558b58e8f0f667501.tar.gz |
dsputil x86: use SSE float instruction instead of SSE2 integer equivalent
All the more required since the users are pure SSE functions.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/x86/sbrdsp.asm')
-rw-r--r-- | libavcodec/x86/sbrdsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/sbrdsp.asm b/libavcodec/x86/sbrdsp.asm index 6f66327088..47cb312140 100644 --- a/libavcodec/x86/sbrdsp.asm +++ b/libavcodec/x86/sbrdsp.asm @@ -68,7 +68,7 @@ cglobal sbr_sum_square, 2, 3, 6 shufps m0, m0, 1 addss m0, m1 %if ARCH_X86_64 == 0 - movd r0m, m0 + movss r0m, m0 fld dword r0m %endif RET |