diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-31 17:00:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-31 17:00:40 +0100 |
commit | 4debdee6ce5ac2a6c15741cb51920b7f714637e9 (patch) | |
tree | 9f7ef5b6676cd73d736fa913ec127a394386ed65 /libavcodec/x86/diracdsp_yasm.asm | |
parent | 66b6d7bcd7b966ff2465436d83937918345e6aad (diff) | |
download | ffmpeg-4debdee6ce5ac2a6c15741cb51920b7f714637e9.tar.gz |
dirac: alignment for add_rect_clamped has been fixed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/diracdsp_yasm.asm')
-rw-r--r-- | libavcodec/x86/diracdsp_yasm.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/diracdsp_yasm.asm b/libavcodec/x86/diracdsp_yasm.asm index 154af193c7..10f3369994 100644 --- a/libavcodec/x86/diracdsp_yasm.asm +++ b/libavcodec/x86/diracdsp_yasm.asm @@ -195,7 +195,7 @@ cglobal add_rect_clamped_%1, 7,7,3, dst, src, stride, idwt, idwt_stride, w, h paddw m1, [idwtq+2*wq] paddw m2, [idwtq+2*wq+mmsize] packuswb m1, m2 - movu [dstq +wq], m1 + mova [dstq +wq], m1 jg .loop lea srcq, [srcq + 2*strideq] |