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
commita1938fd218e11f20084230f2bd3631ba93e3f950 (patch)
tree32e93ba68001ea1d5e94ba24532f4390d8f93080
parent8ee86a8defd8e1b09d68f5615456541af2039774 (diff)
parentb7296e7f47467d3689c182b7c0c94d623a41f187 (diff)
downloadomx-components-a1938fd218e11f20084230f2bd3631ba93e3f950.tar.gz
Make VP9 decoder render into gralloc buffer with HAL_PIXEL_FORMAT_INTEL_YV12 format.
am: b7296e7f47 * commit 'b7296e7f47467d3689c182b7c0c94d623a41f187': Make VP9 decoder render into gralloc buffer with HAL_PIXEL_FORMAT_INTEL_YV12 format. Change-Id: I1d8db62286c0273e2f45a832a4e8467841cf38e3
-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) {