Commit 22fe93ea authored by Michael Niedermayer's avatar Michael Niedermayer

dirac: add_rect_clamped does currently not receive aligned data, thus use unaligned accesses.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d532e922
...@@ -195,7 +195,7 @@ cglobal add_rect_clamped_%1, 7,7,3, dst, src, stride, idwt, idwt_stride, w, h ...@@ -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 m1, [idwtq+2*wq]
paddw m2, [idwtq+2*wq+mmsize] paddw m2, [idwtq+2*wq+mmsize]
packuswb m1, m2 packuswb m1, m2
mova [dstq +wq], m1 movu [dstq +wq], m1
jg .loop jg .loop
lea srcq, [srcq + 2*strideq] lea srcq, [srcq + 2*strideq]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment