]> granicus.if.org Git - libvpx/commitdiff
Disable short circuit feature for low temporal variance.
authorJackyChen <jackychen@google.com>
Thu, 2 Jun 2016 16:41:52 +0000 (09:41 -0700)
committerJackyChen <jackychen@google.com>
Thu, 2 Jun 2016 16:45:00 +0000 (09:45 -0700)
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

index c3a71feedc91cbda40ef97b3477c13ec73bbc127..e2e62fe2e48ed63fbf687dd69b8f328849df4ed3 100644 (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;
     }
   }