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 Platinum encoder frame rate in SPS when enableVUIParams = 1

Hi,

I cannot seem to get the frame rate information to be inserted into the H.264 stream when I have enableVUIParams set to 1.  Relevant settings:

<code>

pCodecParams_->videncParams.maxFrameRate                = (XDAS_Int32)(1000.0*sharedData_->frameRate_)

pCodecParams_->enableVUIparams                          = 1;
pDynamicParams_->enableBufSEI                           = 1;   

pDynamicParams_->enablePicTimSEI                        = 1;
pDynamicParams_->videncDynamicParams.refFrameRate               = (XDAS_Int32)(1000.0*sharedData_->frameRate_);
pDynamicParams_->videncDynamicParams.targetFrameRate            = (XDAS_Int32)(1000.0*sharedData_->frameRate_);

</code>

However, if I set enableVUIParams to 4 and fill in VUI_Buffer appropriately, the frame rate shows up in the H.264 stream.

How do I get this working with enableVUIParams == 1?