Commit a348f4be authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/x86/vf_pullup: fix "invalid combination of opcode and operands" with nasm

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ddb7b443
......@@ -56,7 +56,7 @@ cglobal pullup_filter_diff, 3, 5, 8, first, second, size
paddd m3, m4
movd eax, m3
psrlq m3, 32
movd r4, m3
movd r4d, m3
add eax, r4d
RET
......@@ -135,7 +135,7 @@ cglobal pullup_filter_comb, 3, 5, 8, first, second, size
paddd m5, m6
movd eax, m5
psrlq m5, 32
movd r4, m5
movd r4d, m5
add eax, r4d
RET
......@@ -172,7 +172,7 @@ cglobal pullup_filter_var, 3, 5, 8, first, second, size
paddd m3, m4
movd eax, m3
psrlq m3, 32
movd r4, m3
movd r4d, m3
add eax, r4d
shl eax, 2
RET
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