aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeian Chen <weian.chen@intel.com>2014-01-28 08:50:44 -0800
committerPatrick Tjin <pattjin@google.com>2014-07-21 22:03:43 -0700
commit553a23247aa6a416f89a51e9d20b1789a63c3d41 (patch)
treee25abf52241f9e65f0ed1b427c60cbd16583e7ab
parentc199545bac9fd97a5a06a6b9cf1160813b7ef753 (diff)
downloadwrs_omxil_core-553a23247aa6a416f89a51e9d20b1789a63c3d41.tar.gz
omx-core: fix the definition incompatible issue for error reporting
BZ: 166006 For data structure OMX_VIDEO_ERROR_INFO, the definition is slightly different with the one in libmix, which will cause compatibility issue when error reporting is enabled. Change-Id: Ief2c73b7eee72598e6574f3738f613768f5f458d Signed-off-by: Weian Chen <weian.chen@intel.com>
-rw-r--r--core/inc/khronos/openmax/include/OMX_IntelVideoExt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/inc/khronos/openmax/include/OMX_IntelVideoExt.h b/core/inc/khronos/openmax/include/OMX_IntelVideoExt.h
index 8f40389..8cbc456 100644
--- a/core/inc/khronos/openmax/include/OMX_IntelVideoExt.h
+++ b/core/inc/khronos/openmax/include/OMX_IntelVideoExt.h
@@ -168,7 +168,7 @@ typedef enum
typedef struct OMX_VIDEO_ERROR_INFO {
OMX_VIDEO_DECODE_ERRORTYPE type;
union {
- typedef struct {OMX_U32 start_mb; OMX_U32 end_mb;} mb_pos;
+ struct {OMX_U32 start_mb; OMX_U32 end_mb;} mb_pos;
} error_data;
};