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.

question about using DM8168 HDVICP2.0 to encode H.264 1080p60

hi, 

when i used DM8168 HDVICP to encode/decode 1080p60fps, there was a warning coming out.  the targetfps is 30. i'm using RDK2.0.

Does someone face the same question? thanks for help! :)

-------------------------------------------------------------------------

"[m3video]  Channel:0 inputframerate:60 targetfps:30"

i setup the inputframerate as below:

--------------------------------------------------------

for (i=0; i<1; i++) {
encPrm.chCreateParams[i].format = chainsCfg->encFormat;
encPrm.chCreateParams[i].profile = chainsCfg->encProfile;
encPrm.chCreateParams[i].dataLayout = IVIDEO_FIELD_SEPARATED;
encPrm.chCreateParams[i].fieldMergeEncodeEnable = FALSE;
encPrm.chCreateParams[i].defaultDynamicParams.intraFrameInterval = 60;
encPrm.chCreateParams[i].encodingPreset = XDM_DEFAULT;
encPrm.chCreateParams[i].enableAnalyticinfo = 0;
encPrm.chCreateParams[i].rateControlPreset =
IVIDEO_LOW_DELAY;
encPrm.chCreateParams[i].defaultDynamicParams.inputFrameRate = 60;
encPrm.chCreateParams[i].defaultDynamicParams.targetBitRate =
gChains_networkCtrl.bitRate;
encPrm.chCreateParams[i].defaultDynamicParams.interFrameInterval = 1;
encPrm.chCreateParams[i].defaultDynamicParams.mvAccuracy =
IVIDENC2_MOTIONVECTOR_QUARTERPEL;
}

-------------------------------------------------------------------------