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
This commit is contained in:
Marco 2017-03-14 09:17:06 -07:00
parent 507204316a
commit c0c789ab50

View File

@ -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));