shithub: libvpx

Download patch

ref: e095bcce44deb1326446484a391a48c2f20735c9
parent: 014976c251f2411f0887774d36e10b8532b6636e
parent: 18262a8576097ca05f5c8c2d10ea966917bb1b8c
author: Marco Paniconi <marpan@google.com>
date: Wed Oct 4 23:28:06 EDT 2017

Merge "Adjust threshold for adapt_partition for speed 6."

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -540,9 +540,7 @@
     if (sf->use_source_sad) {
       sf->adapt_partition_source_sad = 1;
       sf->adapt_partition_thresh =
-          (cm->width * cm->height <= 640 * 360) ? 40000 : 80000;
-      if (sf->use_altref_onepass && cpi->refresh_alt_ref_frame && !is_keyframe)
-        sf->adapt_partition_thresh = (3 * sf->adapt_partition_thresh) >> 2;
+          (cm->width * cm->height <= 640 * 360) ? 40000 : 60000;
       if (cpi->content_state_sb_fd == NULL &&
           (!cpi->use_svc ||
            cpi->svc.spatial_layer_id == cpi->svc.number_spatial_layers - 1)) {