summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-01-08 12:08:56 -0300
committerJames Almer <jamrial@gmail.com>2016-01-08 14:03:10 -0300
commit4bcbeaa337ea18b57868bd62f24e735bbaac667c (patch)
tree42c59af3962bc59a4783c3c7cd6a545de2efc15c
parent8cd0e23be83d7967ce6d0c1e933e1bd0819c8cb6 (diff)
downloadffmpeg-4bcbeaa337ea18b57868bd62f24e735bbaac667c.tar.gz
x86/float_dsp: zero extend offset from ff_scalarproduct_float_sse
Reviewed-by: Christophe Gisquet <christophe.gisquet@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com> (cherry picked from commit dc79824deb6ac0ce236589c618744b33629201cd)
-rw-r--r--libavutil/x86/float_dsp.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm
index ec3d22b230..c4484a28e6 100644
--- a/libavutil/x86/float_dsp.asm
+++ b/libavutil/x86/float_dsp.asm
@@ -332,10 +332,10 @@ VECTOR_FMUL_REVERSE
; float scalarproduct_float_sse(const float *v1, const float *v2, int len)
INIT_XMM sse
cglobal scalarproduct_float, 3,3,2, v1, v2, offset
+ shl offsetd, 2
+ add v1q, offsetq
+ add v2q, offsetq
neg offsetq
- shl offsetq, 2
- sub v1q, offsetq
- sub v2q, offsetq
xorps xmm0, xmm0
.loop:
movaps xmm1, [v1q+offsetq]