Hi,all
The parameters are set as bellow:
VIDENC1_DynamicParams dynParams = Venc1_DynamicParams_DEFAULT;
VIDENC1_Params params = Venc1_Params_DEFAULT;
params.maxWidth = 1920;
params.maxHeight = 1088;
params.inputChromaFormat = XDM_YUV_420SP;
params.reconChromaFormat = XDM_CHROMA_NA;
params.rateControlPreset = IVIDEO_LOW_DELAY;
params.maxBitRate = 20000000;
params.dataEndianness = XDM_LE_32;
dynParams.targetBitRate = params.maxBitRate;
dynParams.inputWidth = params.maxWidth;
dynParams.inputHeight = params.maxHeight;
Can anyone figure out the problem. Why the speed can't reach 30 frames per second as its document said.
Regards,
David