diff options
author | James Almer <jamrial@gmail.com> | 2016-01-08 12:08:42 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-01-08 16:14:27 -0300 |
commit | 4ee38ed7f9038fb20ecef10811bc204603b4f6ee (patch) | |
tree | e79b8d7c8a512fed47362e3fe16d74282738fae6 | |
parent | 7f520524f67a583164724d030aec57bad8b1d61f (diff) | |
download | ffmpeg-4ee38ed7f9038fb20ecef10811bc204603b4f6ee.tar.gz |
x86/float_dsp: zero extend len from ff_butterflies_float_sse implicitly
Reviewed-by: Christophe Gisquet <christophe.gisquet@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavutil/x86/float_dsp.asm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm index 6ac2aa85d0..743e1c1bf2 100644 --- a/libavutil/x86/float_dsp.asm +++ b/libavutil/x86/float_dsp.asm @@ -359,10 +359,7 @@ cglobal scalarproduct_float, 3,3,2, v1, v2, offset ;----------------------------------------------------------------------------- INIT_XMM sse cglobal butterflies_float, 3,3,3, src0, src1, len -%if ARCH_X86_64 - movsxd lenq, lend -%endif - shl lenq, 2 + shl lend, 2 add src0q, lenq add src1q, lenq neg lenq |