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.

How can I find the exact definition of "H264VENC_TI_IH264VENC_DYNAMICPARAMS"?

I can find the extern

extern IH264VENC_DynamicParams H264VENC_TI_IH264VENC_DYNAMICPARAMS;

in file ih264venc.h

but I can not find the definition of this variable and exact value of every field for this variable.

where can I find it?

 

thanks,

Strong

  •  

    Hi Strong,

    Definition of H264VENC_TI_IH264VENC_DYNAMICPARAMS variable is inside the codec, its not exposed to application. It has default values for all codec params, which will get use when application uses Base Param mode. 

    Other use case will be application engg want to modify only some of the extended params, in that case first copy content of H264VENC_TI_IH264VENC_DYNAMICPARAMS  to your local extnded struct and then modify parameters which you are interested.

     

    Thanks,

    Veeranna


  • OK, I got it.

    thanks for your instant answer.