diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-31 17:00:03 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-31 17:00:03 +0100 |
commit | 66b6d7bcd7b966ff2465436d83937918345e6aad (patch) | |
tree | 95e3fe690dc96c5d95adc2dd823b9708222d5707 | |
parent | 2eecf63086ab58927c274ec10525f933785bb957 (diff) | |
download | ffmpeg-66b6d7bcd7b966ff2465436d83937918345e6aad.tar.gz |
dirac: alignment for put_signed_rect_clamped has been fixed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/diracdsp_yasm.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/diracdsp_yasm.asm b/libavcodec/x86/diracdsp_yasm.asm index e563bbf80b..154af193c7 100644 --- a/libavcodec/x86/diracdsp_yasm.asm +++ b/libavcodec/x86/diracdsp_yasm.asm @@ -157,8 +157,8 @@ cglobal put_signed_rect_clamped_%1, 5,7,3, dst, dst_stride, src, src_stride, w, packsswb m2, [src2q+2*wq+mmsize] paddb m1, m0 paddb m2, m0 - movu [dstq +wq], m1 - movu [dst2q+wq], m2 + mova [dstq +wq], m1 + mova [dst2q+wq], m2 jg .loopx lea srcq, [srcq+src_strideq*4] |