[FFmpeg-cvslog] r19046 - trunk/libavcodec/lcldec.c

reimar subversion
Sun May 31 12:16:28 CEST 2009


Author: reimar
Date: Sun May 31 12:16:28 2009
New Revision: 19046

Log:
Simply use memcpy instead of AV_RN32/AV_WN32 combination.

Modified:
   trunk/libavcodec/lcldec.c

Modified: trunk/libavcodec/lcldec.c
==============================================================================
--- trunk/libavcodec/lcldec.c	Sun May 31 12:14:27 2009	(r19045)
+++ trunk/libavcodec/lcldec.c	Sun May 31 12:16:28 2009	(r19046)
@@ -89,7 +89,7 @@ static unsigned int mszh_decomp(unsigned
         if ((mask & (1 << (--maskbit))) == 0) {
             if (destptr + 4 > destptr_end)
                 break;
-            AV_WN32(destptr, AV_RN32(srcptr));
+            memcpy(destptr, srcptr, 4);
             srclen -= 4;
             destptr += 4;
             srcptr += 4;



More information about the ffmpeg-cvslog mailing list