lavc/vaapi_encode: convert from lambda to qp
When AV_CODEC_FLAG_QSCALE is set, the value of avctx->global_quality is lambda. Signed-off-by: Haihao Xiang <haihao.xiang@intel.com> (cherry picked from commit 1590a96adc28a150ad641080262499f58158ee24)
This commit is contained in:
parent
2d18c4906f
commit
74e4e900bb
@ -1969,7 +1969,10 @@ rc_mode_found:
|
||||
if (ctx->explicit_qp) {
|
||||
rc_quality = ctx->explicit_qp;
|
||||
} else if (avctx->global_quality > 0) {
|
||||
rc_quality = avctx->global_quality;
|
||||
if (avctx->flags & AV_CODEC_FLAG_QSCALE)
|
||||
rc_quality = avctx->global_quality / FF_QP2LAMBDA;
|
||||
else
|
||||
rc_quality = avctx->global_quality;
|
||||
} else {
|
||||
rc_quality = ctx->codec->default_quality;
|
||||
av_log(avctx, AV_LOG_WARNING, "No quality level set; "
|
||||
|
Loading…
x
Reference in New Issue
Block a user