Added a new speed 7 in rt mode
authorYaowu Xu <yaowu@google.com>
Fri, 27 Jun 2014 17:05:24 +0000 (10:05 -0700)
committerYaowu Xu <yaowu@google.com>
Fri, 27 Jun 2014 20:29:09 +0000 (13:29 -0700)
To experiment with different speed/quality compromises.

Change-Id: Ia9d4b85243554d620498a327da37c356e752b07f

vp9/encoder/vp9_speed_features.c

index 1730389..7c8e337 100644 (file)
@@ -279,8 +279,10 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
     // 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;