diff --git a/vp9/encoder/vp9_onyx_if.c b/vp9/encoder/vp9_onyx_if.c index 9042111f8dc278587234dfe77a56d87753b867df..500bdfe0a1d2b6c46d0346e8bf9982b000349648 100644 --- a/vp9/encoder/vp9_onyx_if.c +++ b/vp9/encoder/vp9_onyx_if.c @@ -796,6 +796,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) { sf->skip_encode_sb = 1; sf->use_uv_intra_rd_estimate = 1; sf->using_small_partition_info = 1; + sf->disable_splitmv = + (MIN(cpi->common.width, cpi->common.height) >= 720)? 1 : 0; } if (speed == 3) { sf->comp_inter_joint_search_thresh = BLOCK_SIZE_TYPES; @@ -811,6 +813,7 @@ void vp9_set_speed_features(VP9_COMP *cpi) { FLAG_SKIP_COMP_REFMISMATCH; sf->use_rd_breakout = 1; sf->skip_encode_sb = 1; + sf->disable_splitmv = 1; } if (speed == 4) { sf->comp_inter_joint_search_thresh = BLOCK_SIZE_TYPES; @@ -829,6 +832,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) { sf->optimize_coefficients = 0; // sf->reduce_first_step_size = 1; // sf->reference_masking = 1; + + sf->disable_splitmv = 1; } /* if (speed == 2) {