Hi,
I am using OMX with ezsdk 5.03 on DM8168. I have a problem to OMX_SetConfig DEI parameters when the component is in an execute state,
for example:
OMX_CONFIG_ALG_ENABLE algEnable;
OMX_INIT_PARAM (&algEnable);
algEnable.nPortIndex = 0;
algEnable.nChId = 0;
if ( pAppData->vidDetectStatus.isInterlaced )
{
algEnable.bAlgBypass = 0;
eError = OMX_SetConfig (pAppData->pDei2Handle,(OMX_INDEXTYPE) OMX_TI_IndexConfigAlgEnable,&algEnable);
}
It fails to return from the function, why is that?
Thanks.