shithub: libvpx

Download patch

ref: 7a33712475f670efe480728ac65b50b6b9553782
parent: cdda17ed7730b210bd9f4a2786597d9fabb7b372
author: Yaowu Xu <yaowu@google.com>
date: Tue Sep 2 14:53:10 EDT 2014

Change last_partition_redo_frequency for speed 3

From 3 to 2, which seems to be slightly positive on compression for
all test sets, also reduces encoding time by 2%-5%, varying on the
test clips.

Change-Id: If045417bd27311700c919b4a335eff0dc1130ae0

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -149,7 +149,7 @@
     sf->alt_ref_search_fp = 1;
     sf->motion_field_mode_search = !boosted;
     sf->lf_motion_threshold = LOW_MOTION_THRESHOLD;
-    sf->last_partitioning_redo_frequency = 3;
+    sf->last_partitioning_redo_frequency = 2;
     sf->recode_loop = ALLOW_RECODE_KFMAXBW;
     sf->adaptive_rd_thresh = 3;
     sf->mode_skip_start = 6;
--