diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-28 16:01:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-28 16:06:00 +0200 |
commit | a348f4befe23ada291a1982de23ed7d828bdaf0c (patch) | |
tree | 6f255bd001c10389d5635139f87d648af4ca75c5 | |
parent | ddb7b4435a84bcc53018eb802fec675f75d242c7 (diff) | |
download | ffmpeg-a348f4befe23ada291a1982de23ed7d828bdaf0c.tar.gz |
avfilter/x86/vf_pullup: fix "invalid combination of opcode and operands" with nasm
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/x86/vf_pullup.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/x86/vf_pullup.asm b/libavfilter/x86/vf_pullup.asm index 4ce8b9b6f9..d3a195511e 100644 --- a/libavfilter/x86/vf_pullup.asm +++ b/libavfilter/x86/vf_pullup.asm @@ -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 |