hi experts.
I'm using DEI / Mosaic Omx componets in EZSDK 5.04.
Currently DEI outport is connected to Mosaic's inport with 1920x1080 and have no problem.
to change DEI outport and MOSAIC inport resolution in OMX_StateExecuting state,
I have the following steps.
1. prepare some conditions(reinitialize DEI and have allocated buffers for outport)
2. disable mosaic's inport
OMX_SendCommand (handle, OMX_CommandPortDisable,outportindex,NULL);
3. free mosaic's inport buffers
4. get disable complete message
semp_pend(pMOSAIC->port_sem);
5. return error : OMX_ErrorIncorrectStateOperation
OMX_SetParameter (handle, OMX_IndexParamPortDefinition, ¶mPort);
Does it possible to use OMX_SetParameter() for disabled port ? (if all conditions are satisfied)
and additionally where can I find some references for dynamic port configuration?
Best regards
Hwanserk.