From c0c789ab501c569b808034340c7ca5e97d907b4f Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 14 Mar 2017 09:17:06 -0700 Subject: [PATCH] vp9: Adjust copy partition threshold, for speed 8. Reduce it from 5 to 4, small/no change in metrics or speed. Small reduction in dragging artifact near moving head. Change-Id: Ic3bc5ca67c70bf0c89fc2ed14454840a28ae5b6a --- vp9/encoder/vp9_speed_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_speed_features.c b/vp9/encoder/vp9_speed_features.c index 7b78d1d..27ca7c0 100644 --- a/vp9/encoder/vp9_speed_features.c +++ b/vp9/encoder/vp9_speed_features.c @@ -523,7 +523,7 @@ static void set_rt_speed_feature_framesize_independent( sf->copy_partition_flag = 1; if (sf->copy_partition_flag) { - cpi->max_copied_frame = 5; + cpi->max_copied_frame = 4; if (cpi->prev_partition == NULL) { cpi->prev_partition = (BLOCK_SIZE *)vpx_calloc( cm->mi_stride * cm->mi_rows, sizeof(BLOCK_SIZE)); -- 2.7.4