ffmpeg | branch: master | Christophe Gisquet <christophe.gisq...@gmail.com> | 
Mon Mar  2 18:17:28 2015 +0100| [efd3f407e50ec04eb9b90825bf8436f221e65de8] | 
committer: Michael Niedermayer

hevc/sao: use unaligned copy

Signed-off-by: Michael Niedermayer <michae...@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;
         }

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

Reply via email to