diff options
author | James Almer <jamrial@gmail.com> | 2022-09-06 14:06:03 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-09-06 14:06:03 -0300 |
commit | 74f5fb6db899dbc4fde9ccf77f37256ddcaaaab9 (patch) | |
tree | ccb09f29d75f9e45c0d883335c6b21f1f6235394 /libavutil/x86/tx_float.asm | |
parent | da5f7799a03aa53d0ffd25572aa9c65ba8279e57 (diff) | |
download | ffmpeg-74f5fb6db899dbc4fde9ccf77f37256ddcaaaab9.tar.gz |
x86/tx_float: set all operands for shufps
Fixes compilation with AVX2 enabled yasm.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/x86/tx_float.asm')
-rw-r--r-- | libavutil/x86/tx_float.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/x86/tx_float.asm b/libavutil/x86/tx_float.asm index 69f67720c1..6d33ee7f30 100644 --- a/libavutil/x86/tx_float.asm +++ b/libavutil/x86/tx_float.asm @@ -1408,8 +1408,8 @@ cglobal mdct_sr_inv_float, 4, 12, 16, 288, ctx, out, in, stride, len, lut, exp, mulps m10, m2 ; 1 reim * imim mulps m11, m3 ; 2 reim * imim - shufps m10, m10, q2301 - shufps m11, m11, q2301 + shufps m10, m10, m10, q2301 + shufps m11, m11, m11, q2301 fmaddsubps m10, m12, m2, m10 fmaddsubps m11, m13, m3, m11 |