summaryrefslogtreecommitdiffstats
path: root/libavcodec/mathops.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-06-22 20:57:00 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2010-06-22 20:57:00 +0000
commit157cb0694a3b21db8af7db80462c8091c0bb32b0 (patch)
tree24dfa399947c70e282f1961c7180ddd83556377b /libavcodec/mathops.h
parentfd6eb4a06c31e518060e27a818b8acf4410be94a (diff)
downloadffmpeg-streaming-157cb0694a3b21db8af7db80462c8091c0bb32b0.zip
ffmpeg-streaming-157cb0694a3b21db8af7db80462c8091c0bb32b0.tar.gz
Rename PACK4x8() to PACK4UINT8().
Originally committed as revision 23721 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mathops.h')
-rw-r--r--libavcodec/mathops.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h
index 917112b..ebf57f5 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
OpenPOWER on IntegriCloud