diff options
| author | Gu, Wangyi <wangyi.gu@intel.com> | 2012-09-28 17:06:24 +0800 |
|---|---|---|
| committer | Patrick Tjin <pattjin@google.com> | 2014-07-21 22:02:49 -0700 |
| commit | 6cc81190f7b226bbe16f3ed34c9bc8217da480f0 (patch) | |
| tree | 42645324a10203b99bcfbe2f7a9e35dbcdd3c48f /videocodec/OMXVideoDecoderBase.cpp | |
| parent | cae415b84125ffc14bfdb121394a60b74d506f48 (diff) | |
| download | android_hardware_intel_common_omx-components-6cc81190f7b226bbe16f3ed34c9bc8217da480f0.tar.gz android_hardware_intel_common_omx-components-6cc81190f7b226bbe16f3ed34c9bc8217da480f0.tar.bz2 android_hardware_intel_common_omx-components-6cc81190f7b226bbe16f3ed34c9bc8217da480f0.zip | |
[Movie studio] remove the workaound when 1080p changed to 1920*1080
BZ: 56801
remove the workaound when 1080p definition be changed to 1920*1080
in movie studio.
Change-Id: I3edbc51d70f918cf6822951d35b572b34126a600
Signed-off-by: Gu, Wangyi <wangyi.gu@intel.com>
Reviewed-on: http://android.intel.com:8080/68309
Reviewed-by: Feng, Wei <wei.feng@intel.com>
Reviewed-by: Tang, Richard <richard.tang@intel.com>
Reviewed-by: Shi, PingX <pingx.shi@intel.com>
Tested-by: Shi, PingX <pingx.shi@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'videocodec/OMXVideoDecoderBase.cpp')
| -rwxr-xr-x | videocodec/OMXVideoDecoderBase.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/videocodec/OMXVideoDecoderBase.cpp b/videocodec/OMXVideoDecoderBase.cpp index 8098869..09c6e7a 100755 --- a/videocodec/OMXVideoDecoderBase.cpp +++ b/videocodec/OMXVideoDecoderBase.cpp @@ -578,13 +578,6 @@ OMX_ERRORTYPE OMXVideoDecoderBase::HandleFormatChange(void) { } } - if (mWorkingMode == RAWDATA_MODE && - width == paramPortDefinitionInput.format.video.nFrameWidth && - height == paramPortDefinitionInput.format.video.nFrameHeight) { - // FIXME: This is a workaroud for video editor issue, if contains crop msg we don't report to - // the client. - return OMX_ErrorNone; - } paramPortDefinitionInput.format.video.nFrameWidth = width; paramPortDefinitionInput.format.video.nFrameHeight = height; paramPortDefinitionInput.format.video.nStride = stride; |
