From: Marco Date: Fri, 29 Sep 2017 18:34:00 +0000 (-0700) Subject: vp9: 1 pass vbr: Limit qpdelta on high_source_sad. X-Git-Tag: v1.7.0~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab2bd340ace0e02285a821207e4080cbf0bbdce8;p=libvpx vp9: 1 pass vbr: Limit qpdelta on high_source_sad. For 1 pass vbr: when significant content/scene change is detected (high_source_sad = 1) reduce/turnoff the additional qdelta on the active_worst_quality. This helps somewhat to reduce the occurrence of large frame sizes and large encode times. Allow it only when use_altef_onepass is enabled. Neutral/no change on metrics. Change-Id: I1dd97dd2ab892d65f707b841b27a5de300b714ea --- diff --git a/vp9/encoder/vp9_ratectrl.c b/vp9/encoder/vp9_ratectrl.c index 716eb1bc8..e796b66e0 100644 --- a/vp9/encoder/vp9_ratectrl.c +++ b/vp9/encoder/vp9_ratectrl.c @@ -1004,6 +1004,7 @@ static int rc_pick_q_and_bounds_one_pass_vbr(const VP9_COMP *cpi, qdelta = vp9_compute_qdelta_by_rate( &cpi->rc, cm->frame_type, active_worst_quality, 1.75, cm->bit_depth); } + if (rc->high_source_sad && cpi->sf.use_altref_onepass) qdelta = 0; *top_index = active_worst_quality + qdelta; *top_index = (*top_index > *bottom_index) ? *top_index : *bottom_index; }