summaryrefslogtreecommitdiff
path: root/libavcodec/hevc_filter.c
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2015-03-02 18:17:28 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-02 19:32:23 +0100
commitefd3f407e50ec04eb9b90825bf8436f221e65de8 (patch)
tree044df1aa54aaeba6ac40943714964334fc2230f1 /libavcodec/hevc_filter.c
parent08728f400b8367dc8c983036cb2eff3a2891322b (diff)
hevc/sao: use unaligned copy
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc_filter.c')
-rw-r--r--libavcodec/hevc_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c
index 855a619b96..f50a640eab 100644
--- a/libavcodec/hevc_filter.c
+++ b/libavcodec/hevc_filter.c
@@ -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;
}