From f3fbe790d9d4e93b2ec8c7476572f2d155e8b43e Mon Sep 17 00:00:00 2001 From: Sven Dueking Date: Fri, 14 Aug 2015 12:46:22 +0200 Subject: [PATCH] avcodec/qsvenc: Set MaxKpbs to rc_max_rate for CBR and VBR (bitrate is equal to rc_max_rate for CBR) Signed-off-by: Michael Niedermayer --- libavcodec/qsvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c index 57f5fe4199..e5d3fa605d 100644 --- a/libavcodec/qsvenc.c +++ b/libavcodec/qsvenc.c @@ -121,7 +121,7 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q) case MFX_RATECONTROL_VBR: q->param.mfx.InitialDelayInKB = avctx->rc_initial_buffer_occupancy / 1000; q->param.mfx.TargetKbps = avctx->bit_rate / 1000; - q->param.mfx.MaxKbps = avctx->bit_rate / 1000; + q->param.mfx.MaxKbps = avctx->rc_max_rate / 1000; break; case MFX_RATECONTROL_CQP: quant = avctx->global_quality / FF_QP2LAMBDA;