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.

dm365 dvsdk4_02 CVBR



你好,我现在正在采用DM365的DVSDK4_02里面的encode  demos  ,它采用的码流控制模式是自动码流方式:

params->rateControlPreset= IVIDEO_NONE.

现在我想采用CVBR码流控制方式,我在TI的以下链接

processors.wiki.ti.com/.../DM36x_Rate_Control_Modes

看到了CVBR (rcAlgo = 3): Constrained Variable Bitrate

,所以必须设置:

params->rateControlPreset= IVIDEO_USER_DEFINED;

rcAlgo = 3;

但是,在encode  demos中的参数结构体VIDENCI_Parmas 和 VIDENCI_DynamicParams中我找不到rcAlgo 的参数。

请问我应该怎样修改encode 的代码呢?谢谢!