From aed48c786a8205353d88d9c015914351bf0a7b2a Mon Sep 17 00:00:00 2001 From: Yunqing Wang Date: Wed, 29 Oct 2014 17:05:04 -0700 Subject: [PATCH] Remove unused speed feature Partition_check was unused and removed. Change-Id: I15ec9162d86dc61f04c09229c498629878ed7155 --- vp9/encoder/vp9_speed_features.c | 2 -- vp9/encoder/vp9_speed_features.h | 4 ---- 2 files changed, 6 deletions(-) diff --git a/vp9/encoder/vp9_speed_features.c b/vp9/encoder/vp9_speed_features.c index 294d5cc30..3315aa6a1 100644 --- a/vp9/encoder/vp9_speed_features.c +++ b/vp9/encoder/vp9_speed_features.c @@ -257,8 +257,6 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf, : STRICT_NEIGHBORING_MIN_MAX; sf->max_partition_size = BLOCK_32X32; sf->min_partition_size = BLOCK_8X8; - sf->partition_check = - (frames_since_key % sf->last_partitioning_redo_frequency == 1); sf->force_frame_boost = is_keyframe || (frames_since_key % (sf->last_partitioning_redo_frequency << 1) == 1); sf->max_delta_qindex = is_keyframe ? 20 : 15; diff --git a/vp9/encoder/vp9_speed_features.h b/vp9/encoder/vp9_speed_features.h index 1712f873f..a314f6040 100644 --- a/vp9/encoder/vp9_speed_features.h +++ b/vp9/encoder/vp9_speed_features.h @@ -319,10 +319,6 @@ typedef struct SPEED_FEATURES { // Fast quantization process path int use_quant_fp; - // Search through variable block partition types in non-RD mode decision - // encoding process for RTC. - int partition_check; - // Use finer quantizer in every other few frames that run variable block // partition type search. int force_frame_boost; -- 2.40.0