From 3521e9ee7cecb33df35e4339eaf63707759fc18a Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 14 Mar 2016 10:42:21 -0700 Subject: [PATCH] vp9: Scene cut/slide change detection: Increse min_thresh. Only affects vbr mode. Change-Id: I15e24c50343bc9171c734dfc7685491c7dbb8654 --- vp9/encoder/vp9_ratectrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_ratectrl.c b/vp9/encoder/vp9_ratectrl.c index 06f955b23..855acd777 100644 --- a/vp9/encoder/vp9_ratectrl.c +++ b/vp9/encoder/vp9_ratectrl.c @@ -2047,7 +2047,7 @@ void vp9_avg_source_sad(VP9_COMP *cpi) { // for cases where there is small change from content that is completely // static. if (cpi->oxcf.rc_mode == VPX_VBR) { - min_thresh = 20000; + min_thresh = 30000; thresh = 2.0f; } if (avg_sad >