vp9: Turn off ml_partition_search_early_termination.
authorMarco <marpan@google.com>
Wed, 15 Mar 2017 20:44:26 +0000 (13:44 -0700)
committerMarco <marpan@google.com>
Wed, 15 Mar 2017 22:00:38 +0000 (15:00 -0700)
Fails on nightly ubsan, valgrind tests.
Enabled on commit:6701014

Change-Id: Ied3f5cb38e39cba54ac134f4514107cdfdfce159

vp9/encoder/vp9_speed_features.c

index 331d530..905506f 100644 (file)
@@ -73,9 +73,10 @@ static void set_good_speed_feature_framesize_dependent(VP9_COMP *cpi,
 
   // Currently, the machine-learning based partition search early termination
   // is only used while VPXMIN(cm->width, cm->height) >= 480 and speed = 0.
-  if (VPXMIN(cm->width, cm->height) >= 480) {
-    sf->ml_partition_search_early_termination = 1;
-  }
+  // TODO(yunqingwang): Re-enable when test failures are fixed.
+  // if (VPXMIN(cm->width, cm->height) >= 480) {
+  //   sf->ml_partition_search_early_termination = 1;
+  // }
 
   if (speed >= 1) {
     sf->ml_partition_search_early_termination = 0;