summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngela Stegmaier <angelabaker@ti.com>2018-03-13 15:37:39 -0500
committerAngela Stegmaier <angelabaker@ti.com>2018-03-21 14:50:39 -0500
commit36e4384600e67f7ae78b3c991c33816d9172dc25 (patch)
tree6513d49182a8c2f83fd76ccc64251cabb82af6df
parent8f1e7871bc85bb14acf2d3955695644ed5825e61 (diff)
downloaddra7xx-36e4384600e67f7ae78b3c991c33816d9172dc25.tar.gz
OMX: Video Decoder: Don't send OMX_IndexConfigCommonOutputCrop during Port Enable
This makes vts testing fail, and it isn't needed at this point. It will be sent after decoding a frame to indicate the proper crop, which is returned from the codec after decoding the frame. Change-Id: I01516e74e15ac17447b3f62d9bf52941868fc7c7 Signed-off-by: Angela Stegmaier <angelabaker@ti.com>
-rw-r--r--omx/videodecode/omx_videodec_common/src/omx_video_decoder.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/omx/videodecode/omx_videodec_common/src/omx_video_decoder.c b/omx/videodecode/omx_videodec_common/src/omx_video_decoder.c
index 1749682..d64e7c1 100644
--- a/omx/videodecode/omx_videodec_common/src/omx_video_decoder.c
+++ b/omx/videodecode/omx_videodec_common/src/omx_video_decoder.c
@@ -945,13 +945,6 @@ OMX_ERRORTYPE OMXVidDec_CommandNotify(OMX_HANDLETYPE hComponent,
}
pVidDecComp->nOutPortReconfigRequired = 0;
}
- if( pVidDecComp->bUsePortReconfigForCrop == OMX_TRUE ) {
- eError = pVidDecComp->sBase.fpReturnEventNotify(hComponent,
- OMX_EventPortSettingsChanged, OMX_VIDDEC_OUTPUT_PORT, OMX_IndexConfigCommonOutputCrop, NULL);
- if( eError != OMX_ErrorNone ) {
- OSAL_ErrorTrace("Port reconfig callback returned error, trying to continue");
- }
- }
break;