This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DVR RDK-(McFW) example

I use latest DVR RDK with McFW architecture. I want to know if TI has any file based decode and display example code.

 

  • Hi,

    In McFW based DVR RDK, we currently do not have only "file read-->decode-->display" usecase. But we are working on implementing this application on McFW. It should be ready by Sep/E.

    Regards,

    Anshuman

    PS: Please mark this post as verified, if you think it has answered your question. Thanks.

  • Hi

     If remove the OMX, and I  read below document.

    http://focus.ti.com/asia/techdays/2011/BJ-5-2.pdf

    It seems that codec engine has been removed from the Multi Channel FW. Is this right ?

    Zack

  • Hi,

    Yes, in the McFW we do not use Codec Engine,

    Regards,

    Anshuman

  • Hi Anshuman,

    I use the DM8168 DVR RDK of GA version. I want to control the frame rate on usecase 5- VDEC+VDIS. I modify demo_vdec_vdis.c(dvr_rdk/demos/mcfw_api_demos/mcfw_demo) as below. But it still render with 30fps. How can I add a buffer to control the frame rate? Please give me some hints about this portion. Thanks a lot.

    =================================================================================

    for (i=0; i < vdecParams.numChn; i++) {

     

            vdecParams.decChannelParams[i].dynamicParam.frameRate = 20; // NOT USED
            vdecParams.decChannelParams[i].dynamicParam.targetBitRate = 2 * 1000 * 1000; // NOT USED
            if (gVdecVdis_config.fileInfo[i].width != 0 && gVdecVdis_config.fileInfo[i].height != 0)
            {
                vdecParams.decChannelParams[i].maxVideoWidth = gVdecVdis_config.fileInfo[i].width;
                vdecParams.decChannelParams[i].maxVideoHeight = gVdecVdis_config.fileInfo[i].height;
            }

    .

    .

    .

    }

    =================================================================================

    B.R.

    OC