1.  \home\dm8127\Source\ipnc_rdk\ipnc_mcfw\demos\mcfw_api_demos\multich_usecase \ti_mcfw_ipnc_main.c  file:

              system("insmod ./kermod/vpss.ko mode=hdmi:1080p-60 sbufaddr=0xbfb00000");  change to ->     system("insmod ./kermod/vpss.ko mode=hdmi:480p-60 sbufaddr=0xbfb00000");   

              Void App_runDemo(Void)

              vdisParams.deviceParams[VDIS_DEV_HDMI].resolution = VSYS_STD_480P;      //  VSYS_STD_1080P_60;
              /* Override the context here as needed */
              vdisParams.deviceParams[VDIS_DEV_HDMI].resolution = VSYS_STD_480P;      //  VSYS_STD_1080P_60; 

    2.  \home\dm8127\Source\ipnc_rdk\ipnc_mcfw\mcfw\src_linux\mcfw_api\ti_vdis.c  中Void Vdis_params_init(VDIS_PARAMS_S * pContext)

         

              pContext->deviceParams[i].resolution  = VSYS_STD_480P;    //  VSYS_STD_1080P_60

              width  = 720;     // 1920
              height = 480;    //  1080

      3.  \home\dm8127\Source\ipnc_rdk\ipnc_mcfw\mcfw\src_linux\mcfw_api\usecases\multich_capturedisplay.c  

              /* First stream */
             pCameraOutPrm = &pCameraInstPrm->outParams[0];
             pCameraOutPrm->dataFormat = SYSTEM_DF_YUV420SP_UV;
             pCameraOutPrm->scEnable = FALSE;
             pCameraOutPrm->scOutWidth = 720;   //1920;
             pCameraOutPrm->scOutHeight = 480;  //1080;
             pCameraOutPrm->outQueId = 0; 

       4.  \home\dm8127\Source\ipnc_rdk\ipnc_mcfw\mcfw\src_bios6\links_m3vpss\system\system_dctrl_modeInfo.c 中

               Int32 System_getVencMode(Int32 resolution) , we add 

                  case VSYS_STD_480P:        //steven 2016-1-21 add 480P to HDMI output
                              vencMode = FVID2_STD_480P;
                  break;       

        5.  \home\dm8127\Source\ipnc_rdk\ipnc_mcfw\mcfw\src_bios6\links_m3vpss\system\system_dctrl.c  中

                Int32 System_getClk(UInt32 displayRes)  add

                    case VSYS_STD_480P:    //steven 2016-1-21 add 480P to HDMI output
                                clkValue = 27000u;
                    break;