diff mathops.h @ 11923:2013535ff4e5 libavcodec

Rename PACK4x8() to PACK4UINT8().
author rbultje
date Tue, 22 Jun 2010 20:57:00 +0000
parents 2952baf6a266
children 22da8afd75a5
line wrap: on
line diff
--- a/mathops.h	Tue Jun 22 19:29:03 2010 +0000
+++ b/mathops.h	Tue Jun 22 20:57:00 2010 +0000
@@ -148,9 +148,9 @@
 
 #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