mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
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>
This commit is contained in:
parent
09377887df
commit
1590a96adc
1 changed files with 4 additions and 1 deletions
|
|
@ -1970,7 +1970,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…
Add table
Add a link
Reference in a new issue