mirror of https://git.ffmpeg.org/ffmpeg.git
vfi/x86/vf_idet: fix incorrect use of paddq
paddq is an SSE2 instruction so it cannot be used for MMX. This was probably just a typo because the sums are dwords anyway. Reviewed-by: Pascal Massimino <pascal.massimino@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
161fc0f463
commit
db8970d7b6
|
@ -73,7 +73,7 @@ cglobal idet_filter_line, 4, 5, 0, a, b, c, width, index
|
||||||
|
|
||||||
mova m0, m_sum
|
mova m0, m_sum
|
||||||
psrlq m_sum, 0x20
|
psrlq m_sum, 0x20
|
||||||
paddq m0, m_sum
|
paddd m0, m_sum
|
||||||
movd eax, m0
|
movd eax, m0
|
||||||
RET
|
RET
|
||||||
%endmacro
|
%endmacro
|
||||||
|
|
Loading…
Reference in New Issue