shithub: libvpx

Download patch

ref: c0c789ab501c569b808034340c7ca5e97d907b4f
parent: 507204316aaaca39da9ccfa93645302be4a3fd70
author: Marco <marpan@google.com>
date: Tue Mar 14 05:17:06 EDT 2017

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

--- a/vp9/encoder/vp9_speed_features.c
+++ b/vp9/encoder/vp9_speed_features.c
@@ -523,7 +523,7 @@
       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));