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.

camera video :1080P is OK, but a problem with 1080I

To all:

my env : DM8168 RDK4.0

 links: 

cap-dei-enc-dec

         |                    |

            merge

                |

              sw

                |

              dis

when camera's  Output video is  1080P,the program is OK!

however ,  camera  Output video standards is 1080i ;

I have modified code at CAPTURE LINK parameters:

pCaptureInstPrm                                     = &capturePrm.vipInst[1];

pCaptureInstPrm->vipInstId                   = SYSTEM_CAPTURE_INST_VIP1_PORTA;

pCaptureInstPrm->inDataFormat         = SYSTEM_DF_YUV422P;

pCaptureInstPrm->standard                  = SYSTEM_STD_1080I_60; // SYSTEM_STD_1080P_60;

pCaptureInstPrm->numOutput              = 1;

pCaptureInstPrm->videoCaptureMode  = SYSTEM_CAPT_VIDEO_CAPTURE_MODE_SINGLE_CH_NON_MUX_DISCRETE_SYNC_ACTVID_VSYNC;

pCaptureInstPrm->videoIfMode              = SYSTEM_CAPT_VIDEO_IF_MODE_16BIT;

pCaptureInstPrm->inScanFormat          = SYSTEM_SF_INTERLACED; //SYSTEM_SF_PROGRESSIVE;

pCaptureOutPrm                                        = &pCaptureInstPrm->outParams[0];

pCaptureOutPrm->dataFormat                = SYSTEM_DF_YUV422I_YUYV;

pCaptureOutPrm->scEnable                     = FALSE;

pCaptureOutPrm->scOutWidth                 = 0;

pCaptureOutPrm->scOutHeight               = 0;

pCaptureOutPrm->outQueId                    = 0;

 

At first is OK, after a period of time, program will hang up!

 how I might resolve these issues? 

  camera video is 1080i, how to configure the link parameters?

thk!