Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
a348f4befe
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavfilter/x86/vf_pullup.asm

+ 3
- 3
libavfilter/x86/vf_pullup.asm View File

@@ -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

Loading…
Cancel
Save