Commit efd3f407 authored by Christophe Gisquet's avatar Christophe Gisquet Committed by Michael Niedermayer

hevc/sao: use unaligned copy

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 08728f40
......@@ -147,7 +147,7 @@ int i, j;
if (((intptr_t)dst | (intptr_t)src | stride_dst | stride_src) & 15) {
for (i = 0; i < height; i++) {
for (j = 0; j < width; j+=8)
AV_COPY64(dst+j, src+j);
AV_COPY64U(dst+j, src+j);
dst += stride_dst;
src += stride_src;
}
......
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