shithub: libvpx

Download patch

ref: 316071d79c8f2404a8fe9b9b664510cf91cc40d3
parent: b632626ec0ed52eaf008567048a34c6632a1dcf0
parent: 267e73446c09a28aee5b361a3d03f55380a9480b
author: Jerome Jiang <jianj@google.com>
date: Fri Jan 6 17:38:39 EST 2017

Merge "vp9: Enable more aggresive short circuit for speed 8."

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -520,11 +520,7 @@
     if (!cpi->use_svc && cpi->oxcf.rc_mode == VPX_CBR &&
         content != VP9E_CONTENT_SCREEN) {
       // More aggressive short circuit for speed 8.
-      sf->short_circuit_low_temp_var = 2;
-      // More aggressive short circuit for low resolution
-      if (cm->width <= 640 && cm->height <= 480) {
-        sf->short_circuit_low_temp_var = 3;
-      }
+      sf->short_circuit_low_temp_var = 3;
     }
     sf->limit_newmv_early_exit = 0;
   }