From a32f3415392bda8bfc16c0a6827c42e1347a585d Mon Sep 17 00:00:00 2001 From: JackyChen Date: Thu, 2 Jun 2016 09:41:52 -0700 Subject: [PATCH] Disable short circuit feature for low temporal variance. The featrue fails in libvpx_unit_tests-valgrind. Will re-enable it after fixing the issue. Change-Id: I8ba132f04e98f4615b31fbff2097eda83c5e42bc --- vp9/encoder/vp9_speed_features.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vp9/encoder/vp9_speed_features.c b/vp9/encoder/vp9_speed_features.c index c3a71feed..e2e62fe2e 100644 --- a/vp9/encoder/vp9_speed_features.c +++ b/vp9/encoder/vp9_speed_features.c @@ -431,8 +431,8 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf, sf->skip_encode_sb = 0; if (!cpi->use_svc && cpi->oxcf.rc_mode == VPX_CBR && cpi->oxcf.pass == 0 && content != VP9E_CONTENT_SCREEN) { - // Enable short circuit when temporal variance is very low. - sf->short_circuit_low_temp_var = 1; + // Disable short circuit for low temporal variance. + sf->short_circuit_low_temp_var = 0; } } -- 2.40.0