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
This commit is contained in:
JackyChen
2016-06-02 09:41:52 -07:00
parent 10969dfc6e
commit a32f341539

View File

@@ -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;
}
}