diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-27 04:31:30 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-06-19 10:52:35 +0200 |
commit | ecd3cce0ec7591e64c41082c2588ffa53b1b11d3 (patch) | |
tree | ac5fa5394a556d29db45a0086131db223705997b | |
parent | 81d923f14bedbf62dc84a51222875b2b214cee11 (diff) | |
download | ffmpeg-ecd3cce0ec7591e64c41082c2588ffa53b1b11d3.tar.gz |
avfilter/x86/vf_hqdn3d: Fix register types
Fixes Ticket4301
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 52fc3e372f8ed4de5735abed1f7f7569fe37b023)
-rw-r--r-- | libavfilter/x86/vf_hqdn3d.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/x86/vf_hqdn3d.asm b/libavfilter/x86/vf_hqdn3d.asm index 961127e670..e3b1bdca53 100644 --- a/libavfilter/x86/vf_hqdn3d.asm +++ b/libavfilter/x86/vf_hqdn3d.asm @@ -27,8 +27,8 @@ SECTION .text %if lut_bits != 8 sar %1q, 8-lut_bits %endif - movsx %1d, word [%3q+%1q*2] - add %1d, %2d + movsx %1q, word [%3q+%1q*2] + add %1q, %2q %endmacro %macro LOAD 3 ; dstreg, x, bitdepth |