shithub: libvpx

Download patch

ref: 3f92b7b994aceae610ef40bcf92437ca844f73d2
parent: 5a3e3c6d3fa308066e2cef1f8cbc407cd540c176
author: Yaowu Xu <yaowu@google.com>
date: Fri Jun 27 06:05:24 EDT 2014

Added a new speed 7 in rt mode

To experiment with different speed/quality compromises.

Change-Id: Ia9d4b85243554d620498a327da37c356e752b07f

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -279,8 +279,10 @@
     // This feature is only enabled when partition search is disabled.
     sf->reuse_inter_pred_sby = 1;
   }
-
   if (speed >= 7) {
+    sf->disable_filter_search_var_thresh = 1000;
+  }
+  if (speed >= 8) {
     int i;
     for (i = 0; i < BLOCK_SIZES; ++i)
       sf->inter_mode_mask[i] = INTER_NEAREST;