From 2fddb91e9496eb0e3caf99342123ef4cce801c14 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sun, 31 May 2009 10:16:28 +0000 Subject: Simply use memcpy instead of AV_RN32/AV_WN32 combination. Originally committed as revision 19046 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/lcldec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/lcldec.c') diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c index 01b4b43202..4a5a2eb799 100644 --- a/libavcodec/lcldec.c +++ b/libavcodec/lcldec.c @@ -89,7 +89,7 @@ static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned cha 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; -- cgit v1.2.3