mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
SBR DSP: fix SSE code to not use SSE2 instructions.
movq from SSE register _to_ memory is an SSE2 instruction. Use the SSE movlps function instead that does the same thing. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
a9c5b6f602
commit
b5161908e0
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ cglobal sbr_hf_g_filt, 5, 6, 5
|
|||
movq m2, [r1]
|
||||
punpckldq m0, m0
|
||||
mulps m2, m0
|
||||
movq [r0], m2
|
||||
movlps [r0], m2
|
||||
add r0, 8
|
||||
add r2, 4
|
||||
add r1, STEP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue