[FFmpeg-cvslog] hevc/sao: use unaligned copy
Christophe Gisquet
git at videolan.org
Mon Mar 2 19:38:09 CET 2015
ffmpeg | branch: master | Christophe Gisquet <christophe.gisquet at gmail.com> | Mon Mar 2 18:17:28 2015 +0100| [efd3f407e50ec04eb9b90825bf8436f221e65de8] | committer: Michael Niedermayer
hevc/sao: use unaligned copy
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=efd3f407e50ec04eb9b90825bf8436f221e65de8
---
libavcodec/hevc_filter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c
index 855a619..f50a640 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;
}
More information about the ffmpeg-cvslog
mailing list