ffmpeg | branch: master | Roman Arzumanyan <rarzuman...@nvidia.com> | Wed Jun 3 16:12:12 2020 +0300| [470bbf60d4cd34abd2cabea40910af6c0fc2366c] | committer: Timo Rothenpieler
avcodec/nvenc: honor max bitrate in CQ mode Signed-off-by: Timo Rothenpieler <t...@rothenpieler.org> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=470bbf60d4cd34abd2cabea40910af6c0fc2366c --- libavcodec/nvenc.c | 6 +++--- 1 file 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; } } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".