Commit db8970d7 authored by James Darnley's avatar James Darnley Committed by Michael Niedermayer

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: 's avatarPascal Massimino <pascal.massimino@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 161fc0f4
......@@ -73,7 +73,7 @@ cglobal idet_filter_line, 4, 5, 0, a, b, c, width, index
mova m0, m_sum
psrlq m_sum, 0x20
paddq m0, m_sum
paddd m0, m_sum
movd eax, m0
RET
%endmacro
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment