hi TI-friends,
rdk4.1
we can see something below, I want the field "In Recv Frame" to be 10 for each channel
I modify something below
1. in scdLink_priv.h
#define ALG_LINK_SCD_MAX_OUT_FRAMES_PER_CH (3) ==> (10)
2. in multich_progressive_vcap_venc_vdec_vdis.c
ipcFramesOutVpssPrm[1].baseCreateParams.inputFrameRate = 30; ==> 30
ipcFramesOutVpssPrm[1].baseCreateParams.outputFrameRate = 30; ==> 30
dspAlgPrm[1].scdCreateParams.inputFrameRate = 2; ==> 10
dspAlgPrm[1].scdCreateParams.outputFrameRate = 2; ==> 10
if(chIdx < dspAlgPrm[1].scdCreateParams.maxNumVaChan)
{
chPrm->inputFrameRate = 10; ==> 10
chPrm->outputFrameRate = 10; ==> 10
}
else
{
chPrm->inputFrameRate = 2; ==> 10
chPrm->outputFrameRate = 2; ==> 10
}
but I still got the same result ~~
Any thing wrong with me ??