[FFmpeg-cvslog] avfilter/x86/vf_hqdn3d: Fix register types
Michael Niedermayer
git at videolan.org
Fri Jun 19 11:54:13 CEST 2015
ffmpeg | branch: release/2.0 | Michael Niedermayer <michaelni at gmx.at> | Wed May 27 04:31:30 2015 +0200| [4a2be7027f7ea995bbda848133a9978a389e2537] | committer: Carl Eugen Hoyos
avfilter/x86/vf_hqdn3d: Fix register types
Fixes Ticket4301
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 52fc3e372f8ed4de5735abed1f7f7569fe37b023)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4a2be7027f7ea995bbda848133a9978a389e2537
---
libavfilter/x86/vf_hqdn3d.asm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/x86/vf_hqdn3d.asm b/libavfilter/x86/vf_hqdn3d.asm
index 961127e..e3b1bdc 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
More information about the ffmpeg-cvslog
mailing list