aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Hu <austin.hu@intel.com>2016-06-02 20:58:07 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-06-02 20:58:07 +0000
commitc753176b4e089a6ad64620c52c55f12c083f0079 (patch)
tree32e93ba68001ea1d5e94ba24532f4390d8f93080
parent9cdb0c966d370fd9d1293ec62b22fc14f883de0b (diff)
parent53bfe8a61110306d914a1ab3c571c707f028b7a1 (diff)
downloadomx-components-c753176b4e089a6ad64620c52c55f12c083f0079.tar.gz
Make VP9 decoder render into gralloc buffer with HAL_PIXEL_FORMAT_INTEL_YV12 format. am: b7296e7f47
am: 53bfe8a611 * commit '53bfe8a61110306d914a1ab3c571c707f028b7a1': Make VP9 decoder render into gralloc buffer with HAL_PIXEL_FORMAT_INTEL_YV12 format. Change-Id: I8242792d9ee0d46e3c23a819e1975b498771abcf
-rw-r--r--videocodec/OMXVideoDecoderVP9Hybrid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/videocodec/OMXVideoDecoderVP9Hybrid.cpp b/videocodec/OMXVideoDecoderVP9Hybrid.cpp
index 4c2b296..79f39f2 100644
--- a/videocodec/OMXVideoDecoderVP9Hybrid.cpp
+++ b/videocodec/OMXVideoDecoderVP9Hybrid.cpp
@@ -579,8 +579,8 @@ OMX_ERRORTYPE OMXVideoDecoderVP9Hybrid::HandleFormatChange(void)
OMX_COLOR_FORMATTYPE OMXVideoDecoderVP9Hybrid::GetOutputColorFormat(int) {
- LOGV("Output color format is HAL_PIXEL_FORMAT_YV12.");
- return (OMX_COLOR_FORMATTYPE)HAL_PIXEL_FORMAT_YV12;
+ LOGV("Output color format is HAL_PIXEL_FORMAT_INTEL_YV12.");
+ return (OMX_COLOR_FORMATTYPE)HAL_PIXEL_FORMAT_INTEL_YV12;
}
OMX_ERRORTYPE OMXVideoDecoderVP9Hybrid::GetDecoderOutputCropSpecific(OMX_PTR pStructure) {