diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-30 23:26:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-30 23:26:29 +0100 |
commit | 22fe93ea39f72e1c77fcb74898bf78041cdd9f97 (patch) | |
tree | 0c80acbce120f33773e5282af1d53c5e5ab662c7 | |
parent | d532e9223e772fee38d3e4f0955599496886c385 (diff) | |
download | ffmpeg-22fe93ea39f72e1c77fcb74898bf78041cdd9f97.tar.gz |
dirac: add_rect_clamped does currently not receive aligned data, thus use unaligned accesses.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 fde77424fa..bda791c147 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 - mova [dstq +wq], m1 + movu [dstq +wq], m1 jg .loop lea srcq, [srcq + 2*strideq] |