[FFmpeg-cvslog] avcodec/nvenc: honor max bitrate in CQ mode

Roman Arzumanyan git at videolan.org
Thu Jun 4 20:02:44 EEST 2020


ffmpeg | branch: release/4.2 | Roman Arzumanyan <rarzumanyan at nvidia.com> | Wed Jun  3 16:12:12 2020 +0300| [221e490d42bc1c20c61aee385d5bfe003a1a8c87] | committer: Timo Rothenpieler

avcodec/nvenc: honor max bitrate in CQ mode

Signed-off-by: Timo Rothenpieler <timo at rothenpieler.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=221e490d42bc1c20c61aee385d5bfe003a1a8c87
---

 libavcodec/nvenc.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
index 8298aec671..0b0b5d79bb 100644
--- a/libavcodec/nvenc.c
+++ b/libavcodec/nvenc.c
@@ -920,9 +920,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;
     }
 }
 



More information about the ffmpeg-cvslog mailing list