diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-31 16:34:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-31 16:34:26 +0100 |
commit | a14a0d7c2cd85e8e360d97d110f82591bacc880d (patch) | |
tree | 47fd54f9e799275b9955822a1b0c9c3df3b08609 /libavcodec/x86/dwt_yasm.asm | |
parent | 30647fb45aa09f0e456d4fa3e794ae9f3d94d645 (diff) | |
download | ffmpeg-a14a0d7c2cd85e8e360d97d110f82591bacc880d.tar.gz |
dirac: fix segfault in horizontal_compose_haar
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/dwt_yasm.asm')
-rw-r--r-- | libavcodec/x86/dwt_yasm.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dwt_yasm.asm b/libavcodec/x86/dwt_yasm.asm index bdff9ddaf8..b008906278 100644 --- a/libavcodec/x86/dwt_yasm.asm +++ b/libavcodec/x86/dwt_yasm.asm @@ -209,7 +209,7 @@ cglobal horizontal_compose_haar%2i_%1, 3,6,4, b, tmp, w, x, w2, b_w2 jl .end .highpass_loop: - mova m1, [b_w2q + 2*xq] + movu m1, [b_w2q + 2*xq] mova m0, [tmpq + 2*xq] paddw m1, m0 |