I'm using a Mistral DM814x evaluation module with the TI 5.03.01.15 SDK and trying to display video using the OMX VFDC component. I have no trouble playing video to the HDMI output of the Mistral board, but I can't figure out how to get it to play to the LCD display on the expansion I/O card.
I've tried changing
driverId.nDrvInstID = OMX_VIDEO_DISPLAY_ID_HD0;
OMX_SetParameter (..., (OMX_INDEXTYPE) OMX_TI_IndexParamVFDCDriverInstId, &driverId);
to
driverId.nDrvInstID = OMX_VIDEO_DISPLAY_ID_HD1;
OMX_SetParameter (..., (OMX_INDEXTYPE) OMX_TI_IndexParamVFDCDriverInstId, &driverId);
but that doesn't do it.
How can I get VFDC to output to the LCD? Thanks!
- Dave