shithub: libvpx

Download patch

ref: 2c8430e223229b926d43566fe850684695c2cbd0
parent: 8440cc48179d2e5d161007d45618c10a2d9d1352
author: Marco <marpan@google.com>
date: Wed Mar 15 09:44:26 EDT 2017

vp9: Turn off ml_partition_search_early_termination.

Fails on nightly ubsan, valgrind tests.
Enabled on commit:6701014

Change-Id: Ied3f5cb38e39cba54ac134f4514107cdfdfce159

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -73,9 +73,10 @@
 
   // 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;