From 157cb0694a3b21db8af7db80462c8091c0bb32b0 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 22 Jun 2010 20:57:00 +0000 Subject: Rename PACK4x8() to PACK4UINT8(). Originally committed as revision 23721 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mathops.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/mathops.h') diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h index 917112b86e..ebf57f5a4f 100644 --- a/libavcodec/mathops.h +++ b/libavcodec/mathops.h @@ -148,9 +148,9 @@ if ((y) < (x)) {\ #ifndef PACK4x8 # if HAVE_BIGENDIAN -# define PACK4x8(a,b,c,d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d)) +# define PACK4UINT8(a,b,c,d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d)) # else -# define PACK4x8(a,b,c,d) (((d) << 24) | ((c) << 16) | ((b) << 8) | (a)) +# define PACK4UINT8(a,b,c,d) (((d) << 24) | ((c) << 16) | ((b) << 8) | (a)) # endif #endif -- cgit v1.2.3