diff options
author | Roman Arzumanyan <rarzumanyan@nvidia.com> | 2020-06-03 16:12:12 +0300 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2020-06-04 15:33:19 +0200 |
commit | 470bbf60d4cd34abd2cabea40910af6c0fc2366c (patch) | |
tree | 8111030edc5193a5a26535271dc1257512c74185 /libavcodec/nvenc.c | |
parent | 0c79b731647f834dae86a5cf6fb4dbe3538b2266 (diff) | |
download | ffmpeg-470bbf60d4cd34abd2cabea40910af6c0fc2366c.tar.gz |
avcodec/nvenc: honor max bitrate in CQ mode
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
Diffstat (limited to 'libavcodec/nvenc.c')
-rw-r--r-- | libavcodec/nvenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index 880454c960..e269c716a4 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -956,9 +956,9 @@ static av_cold void nvenc_setup_rate_control(AVCodecContext *avctx) av_log(avctx, AV_LOG_VERBOSE, "CQ(%d) mode enabled.\n", tmp_quality); - //CQ mode shall discard max & avg bitrate; - avctx->bit_rate = ctx->encode_config.rcParams.averageBitRate = 0; - avctx->rc_max_rate = ctx->encode_config.rcParams.maxBitRate = 0; + //CQ mode shall discard avg bitrate & honor max bitrate; + ctx->encode_config.rcParams.averageBitRate = avctx->bit_rate = 0; + ctx->encode_config.rcParams.maxBitRate = avctx->rc_max_rate; } } |