I am trying to retrieve the status information from a running decoder in OpenMAX (EZSDK 5.04).
OMX_VIDEO_CONFIG_STATUS decode_status;
OMX_INIT_PARAM(&decode_status);
decode_status.nPortIndex = port;
OMX_GetConfig(decoder_handle, OMX_TI_IndexConfigStatus, &decode_status);
Used on the input port of a decoder, the GetConfig() returns OMX_ErrorUnsupportedIndex.
Used on the output port, it returns OMX_ErrorNotImplemented.
Am I doing something incorrectly here? Alternatively, is there some other way to retrieve the IH264VDEC_Status or similar structures?
Thanks,
- Mark