diff options
| -rw-r--r-- | headers/media_plugin/media/openmax/OMX_IVCommon.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/headers/media_plugin/media/openmax/OMX_IVCommon.h b/headers/media_plugin/media/openmax/OMX_IVCommon.h index 758d7cfa0a..f83114b040 100644 --- a/headers/media_plugin/media/openmax/OMX_IVCommon.h +++ b/headers/media_plugin/media/openmax/OMX_IVCommon.h @@ -168,8 +168,10 @@ typedef enum OMX_COLOR_FORMATTYPE { // 10-bit or 12-bit YUV format, LSB-justified (0's on higher bits) OMX_COLOR_FormatYUV420Planar16 = 0x7F42016B, - // 32-bit RGBA format, 10-bit per channel, alpha channel in highest 2-bit - OMX_COLOR_Format32BitRGBA1010102 = 0x7F00AAAA, + // Packed 10-bit YUV444 representation that includes 2 bits of alpha. Each pixel is + // 32-bit. Bits 0-9 contain the U sample, bits 10-19 contain the Y sample, + // bits 20-29 contain the V sample, and bits 30-31 contain the alpha value. + OMX_COLOR_FormatYUV444Y410 = 0x7F444AAA, OMX_TI_COLOR_FormatYUV420PackedSemiPlanar = 0x7F000100, OMX_QCOM_COLOR_FormatYVU420SemiPlanar = 0x7FA30C00, |