From: Marco Date: Wed, 15 Mar 2017 20:44:26 +0000 (-0700) Subject: vp9: Turn off ml_partition_search_early_termination. X-Git-Tag: v1.7.0~630 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c8430e223229b926d43566fe850684695c2cbd0;p=platform%2Fupstream%2Flibvpx.git vp9: Turn off ml_partition_search_early_termination. Fails on nightly ubsan, valgrind tests. Enabled on commit:6701014 Change-Id: Ied3f5cb38e39cba54ac134f4514107cdfdfce159 --- diff --git a/vp9/encoder/vp9_speed_features.c b/vp9/encoder/vp9_speed_features.c index 331d530..905506f 100644 --- a/vp9/encoder/vp9_speed_features.c +++ b/vp9/encoder/vp9_speed_features.c @@ -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;