fix: add missing strings for max_bitrate setting, and improved logging for bitrate (#3656)
This commit is contained in:
parent
41d9a58560
commit
ffccc1af9b
2 changed files with 3 additions and 1 deletions
|
|
@ -1688,7 +1688,7 @@ namespace video {
|
|||
}
|
||||
|
||||
auto bitrate = ((config::video.max_bitrate > 0) ? std::min(config.bitrate, config::video.max_bitrate) : config.bitrate) * 1000;
|
||||
BOOST_LOG(info) << "Max bitrate is " << config::video.max_bitrate;
|
||||
BOOST_LOG(info) << "Streaming bitrate is " << bitrate;
|
||||
ctx->rc_max_rate = bitrate;
|
||||
ctx->bit_rate = bitrate;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue