mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
encoders/ffmpeg/nvenc: Always set rc_max_rate if needed
This commit is contained in:
parent
6cf663ffff
commit
977716d679
1 changed files with 3 additions and 2 deletions
|
@ -602,9 +602,10 @@ void nvenc::update(obs_data_t* settings, const AVCodec* codec, AVCodecContext* c
|
||||||
if (have_bitrate_range) {
|
if (have_bitrate_range) {
|
||||||
if (int64_t max = obs_data_get_int(settings, ST_KEY_RATECONTROL_LIMITS_BITRATE_MAXIMUM); max > -1)
|
if (int64_t max = obs_data_get_int(settings, ST_KEY_RATECONTROL_LIMITS_BITRATE_MAXIMUM); max > -1)
|
||||||
context->rc_max_rate = static_cast<int>(max * 1000);
|
context->rc_max_rate = static_cast<int>(max * 1000);
|
||||||
|
context->rc_min_rate = context->bit_rate;
|
||||||
} else {
|
} else {
|
||||||
//context->rc_min_rate = 0;
|
context->rc_min_rate = context->bit_rate;
|
||||||
context->rc_max_rate = 0;
|
context->rc_max_rate = context->bit_rate;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Buffer Size
|
// Buffer Size
|
||||||
|
|
Loading…
Reference in a new issue