Media (Intel® Video Processing Library, Intel Media SDK)
Access community support with transcoding, decoding, and encoding in applications using media tools like Intel® oneAPI Video Processing Library and Intel® Media SDK
Announcements
The Intel Media SDK project is no longer active. For continued support and access to new features, Intel Media SDK users are encouraged to read the transition guide on upgrading from Intel® Media SDK to Intel® Video Processing Library (VPL), and to move to VPL as soon as possible.
For more information, see the VPL website.
3056 Discussions

Whether bitrate could be changed when the RateControlMethod is set to 'MFX_RATECONTROL_CBR'

Di_L_Intel
Employee
416 Views

Hello,

On Ivy Bridge Desktop platform with Win7 pro OS, initialize an encoder based on version 1.11 MSDK, its RateControlMethod is set to MFX_RATECONTROL_CBR', and its resolution is set to 720p or 1080p.
Following that, the encoder is reset to set a new bitrate value for its parameter 'mfxVideoParam.mfx.TargetKbps', and the new value could be higher or lower than the original one. But the resetting process will fail with an error code -14 of 'incompatible video parameters'.
If the RateControlMethod is set to 'MFX_RATECONTROL_VBR', the resetting process will succeed.
I would like to confirm whether the bitrate value of 'mfxVideoParam.mfx.TargetKbps' could not be changed when the RateControlMethod is set to 'MFX_RATECONTROL_CBR', or it is our own code's error which causes the failture of the resetting process.

Best Regards,

Rudy
 

0 Kudos
1 Solution
Harshdeep_B_Intel
416 Views

Hi Di,

When the  RateControlMethod is set to MFX_RATECONTROL_CBR, this means it is set to constant bitrate/constant value,  when rateControlMethod is set to 'MFX_RATECONTROL_VBR' means ratecontrol is set to variable bitrate. So when we set a new bit rate value for mfxVideoParam.mfx.TargetKbps, ratecontrolmethod has to be set to MFX_RATECONTROL_VBR. RateControlmethod when set to MFX_RATECONTROL_CBR , mfxVideoParam.mfx.TargetKbps cannot be changed as doing that will result in error. The error you are see is due to allocating wrong video parameters. Please further refer to mediasdk manual on other video parameters. 

View solution in original post

0 Kudos
2 Replies
Harshdeep_B_Intel
417 Views

Hi Di,

When the  RateControlMethod is set to MFX_RATECONTROL_CBR, this means it is set to constant bitrate/constant value,  when rateControlMethod is set to 'MFX_RATECONTROL_VBR' means ratecontrol is set to variable bitrate. So when we set a new bit rate value for mfxVideoParam.mfx.TargetKbps, ratecontrolmethod has to be set to MFX_RATECONTROL_VBR. RateControlmethod when set to MFX_RATECONTROL_CBR , mfxVideoParam.mfx.TargetKbps cannot be changed as doing that will result in error. The error you are see is due to allocating wrong video parameters. Please further refer to mediasdk manual on other video parameters. 

0 Kudos
Di_L_Intel
Employee
416 Views

Hi Harsh,

Thanks a lot.

Rudy

0 Kudos
Reply