mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
avcodec/x86/lossless_audiodsp: fix fallback code for 32bit
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ce6141259b
commit
d3512a0e89
@ -28,7 +28,9 @@ SECTION_TEXT
|
||||
cglobal scalarproduct_and_madd_int16, 4,4,8, v1, v2, v3, order, mul
|
||||
%if mmsize == 16
|
||||
test orderq, 8
|
||||
jnz scalarproduct_and_madd_int16_mmxext;
|
||||
jnz scalarproduct_and_madd_int16_fallback
|
||||
%else
|
||||
scalarproduct_and_madd_int16_fallback
|
||||
%endif
|
||||
shl orderq, 1
|
||||
movd m7, mulm
|
||||
@ -122,7 +124,7 @@ align 16
|
||||
INIT_XMM ssse3
|
||||
cglobal scalarproduct_and_madd_int16, 4,5,10, v1, v2, v3, order, mul
|
||||
test orderq, 8
|
||||
jnz scalarproduct_and_madd_int16_mmxext;
|
||||
jnz scalarproduct_and_madd_int16_fallback
|
||||
shl orderq, 1
|
||||
movd m7, mulm
|
||||
pshuflw m7, m7, 0
|
||||
|
Loading…
Reference in New Issue
Block a user