[FFmpeg-cvslog] dsputil x86: use SSE float instruction instead of SSE2 integer equivalent
Christophe GISQUET
git at videolan.org
Thu Apr 5 22:44:33 CEST 2012
ffmpeg | branch: master | Christophe GISQUET <christophe.gisquet at gmail.com> | Wed Mar 21 20:46:29 2012 +0100| [6b81da2fd030dbc03d36b38558b58e8f0f667501] | committer: Ronald S. Bultje
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 at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6b81da2fd030dbc03d36b38558b58e8f0f667501
---
libavcodec/x86/dsputil_yasm.asm | 2 +-
libavcodec/x86/sbrdsp.asm | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/x86/dsputil_yasm.asm b/libavcodec/x86/dsputil_yasm.asm
index da08bda..00dc18b 100644
--- a/libavcodec/x86/dsputil_yasm.asm
+++ b/libavcodec/x86/dsputil_yasm.asm
@@ -473,7 +473,7 @@ cglobal scalarproduct_float_sse, 3,3,2, v1, v2, offset
shufps xmm0, xmm0, 1
addss xmm0, xmm1
%if ARCH_X86_64 == 0
- movd r0m, xmm0
+ movss r0m, xmm0
fld dword r0m
%endif
RET
diff --git a/libavcodec/x86/sbrdsp.asm b/libavcodec/x86/sbrdsp.asm
index 6f66327..47cb312 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
More information about the ffmpeg-cvslog
mailing list