Merge "Comment out 2 unused speed features"
This commit is contained in:
commit
0d68080445
@ -1671,7 +1671,7 @@ static void rd_pick_partition(VP9_COMP *cpi, TOKENEXTRA **tp, int mi_row,
|
||||
}
|
||||
}
|
||||
|
||||
if (!cpi->sf.use_max_partition_size ||
|
||||
if (!cpi->sf.auto_min_max_partition_size ||
|
||||
bsize <= cpi->sf.max_partition_size) {
|
||||
int larger_is_better = 0;
|
||||
// PARTITION_NONE
|
||||
|
@ -736,9 +736,9 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
|
||||
sf->auto_min_max_partition_size = 0;
|
||||
sf->auto_min_max_partition_interval = 0;
|
||||
sf->auto_min_max_partition_count = 0;
|
||||
sf->use_max_partition_size = 0;
|
||||
// sf->use_max_partition_size = 0;
|
||||
sf->max_partition_size = BLOCK_64X64;
|
||||
sf->use_min_partition_size = 0;
|
||||
// sf->use_min_partition_size = 0;
|
||||
sf->min_partition_size = BLOCK_4X4;
|
||||
sf->adjust_partitioning_from_last_frame = 0;
|
||||
sf->last_partitioning_redo_frequency = 4;
|
||||
@ -797,8 +797,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
|
||||
sf->auto_mv_step_size = 1;
|
||||
|
||||
sf->auto_min_max_partition_size = 1;
|
||||
sf->use_max_partition_size = 1;
|
||||
sf->use_min_partition_size = 1;
|
||||
// sf->use_max_partition_size = 1;
|
||||
// sf->use_min_partition_size = 1;
|
||||
sf->auto_min_max_partition_interval = 1;
|
||||
}
|
||||
if (speed == 2) {
|
||||
|
@ -261,10 +261,10 @@ typedef struct {
|
||||
int auto_min_max_partition_size;
|
||||
int auto_min_max_partition_interval;
|
||||
int auto_min_max_partition_count;
|
||||
int use_min_partition_size;
|
||||
BLOCK_SIZE_TYPE min_partition_size;
|
||||
int use_max_partition_size;
|
||||
BLOCK_SIZE_TYPE max_partition_size;
|
||||
// int use_min_partition_size; // not used in code
|
||||
// int use_max_partition_size;
|
||||
int adjust_partitioning_from_last_frame;
|
||||
int last_partitioning_redo_frequency;
|
||||
int disable_splitmv;
|
||||
|
Loading…
x
Reference in New Issue
Block a user