shithub: libvpx

Download patch

ref: ff0e0a76e8ce4030e5ca30a4ad65d8a41c2584c0
parent: dcd6c87b80f2435ce4f206c5875f3be1f23b6999
parent: 4d50991320d51c0560249ea9e607d15f63058d33
author: Marco Paniconi <marpan@google.com>
date: Wed Mar 22 18:56:17 EDT 2017

Merge "vp9: Adjust some speed settings for speed 8."

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -577,10 +577,10 @@
       }
       // Since the short_circuit_low_temp_var is used, reduce the
       // adaptive_rd_thresh level.
-      sf->adaptive_rd_thresh = 2;
+      sf->adaptive_rd_thresh = 1;
     }
     sf->limit_newmv_early_exit = 0;
-    if (cm->width > 640 && cm->height > 480) sf->use_simple_block_yrd = 1;
+    if (cm->width > 320 && cm->height > 240) sf->use_simple_block_yrd = 1;
   }
   // Turn off adaptive_rd_thresh if row_mt is on for speed 5, 6, 7.
   if (speed >= 5 && speed < 8 && cpi->row_mt && cpi->num_workers > 1) {