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.

DM368 I帧数据



您好!我需要减小I帧编码后的数据量。我看到有这样的processors.wiki.ti.com/.../H.264_DM36x_Ver_2.0_Codec

enableGDR    GDRduration    GDRinterval  这三个量

于是我就这样写

IH264VENC_DynamicParams extDynParams = {

      Venc1_DynamicParams_DEFAULT,    

      .enableGDR=1,

       .GDRduration=5,

       .GDRinterval=30,

   };

  hVe1 = Venc1_create(hEngine, envp->videoEncoder, params,  (VIDENC1_DynamicParams*)&extDynParams);

这样没有减小I帧数据量  请问 如何设置?