summaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@android.com>2014-04-03 17:14:50 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-03 17:14:50 +0000
commitfb3bbd1df323c24dc10c095f29ee8010fc3d1df0 (patch)
tree0b3469569a3eecc561e5684b4c5d8058040a17d1 /include/media
parentd09b2acdc8ca706c65984956e61c0bb333cee992 (diff)
parentd2f7633277dd13ac269adb51c4e7a85746e6c599 (diff)
downloadframeworks_native-fb3bbd1df323c24dc10c095f29ee8010fc3d1df0.zip
frameworks_native-fb3bbd1df323c24dc10c095f29ee8010fc3d1df0.tar.gz
frameworks_native-fb3bbd1df323c24dc10c095f29ee8010fc3d1df0.tar.bz2
am d2f76332: Merge "AArch64: Correction to OMX_U32 and OMX_S32"
* commit 'd2f7633277dd13ac269adb51c4e7a85746e6c599': AArch64: Correction to OMX_U32 and OMX_S32
Diffstat (limited to 'include/media')
-rw-r--r--include/media/openmax/OMX_Types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/media/openmax/OMX_Types.h b/include/media/openmax/OMX_Types.h
index 03fd4bc..9dec372 100644
--- a/include/media/openmax/OMX_Types.h
+++ b/include/media/openmax/OMX_Types.h
@@ -48,6 +48,8 @@
#ifndef OMX_Types_h
#define OMX_Types_h
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
@@ -160,10 +162,10 @@ typedef unsigned short OMX_U16;
typedef signed short OMX_S16;
/** OMX_U32 is a 32 bit unsigned quantity that is 32 bit word aligned */
-typedef unsigned long OMX_U32;
+typedef uint32_t OMX_U32;
/** OMX_S32 is a 32 bit signed quantity that is 32 bit word aligned */
-typedef signed long OMX_S32;
+typedef int32_t OMX_S32;
/* Users with compilers that cannot accept the "long long" designation should