Hi
I have VPBE running on DM6437 for analog output. I noticed when I step over this FVID_exchange, it refresh the image on TV.
if ( IOM_COMPLETED != FVID_exchange( vid0Handle, &dstFBAddr ) ) {
return DEC_FVID_EXCHANGE_ERROR;
}
/* VPBE allocates vid0AllocFB[0] and vid0AllocFB[1] memory buffers in vid0handle for queue and dequeue */
When I remove this FVID_exchange function and only paint an image on those three memory buffers, VPBE did not show any image. It shows only black on screen.
Is there any approach to fill out the video memory buffers without using FVID_exchange to display image on screen?
Thank you very much
-Jason