Commit 54bc7315 authored by Jingning Han's avatar Jingning Han Committed by Gerrit Code Review
Browse files

Deprecate unused mode count variables

Remove mode_check_freq and mode_test_hit_counts from VP9_COMP.

Change-Id: Iabfd9f841444cd9bf19ac761a9795f140082ce0b
Showing with 1 addition and 7 deletions
...@@ -698,12 +698,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) { ...@@ -698,12 +698,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
if (mode > 1) if (mode > 1)
mode = 1; mode = 1;
// Initialise default mode frequency sampling variables for (i = 0; i < MAX_MODES; ++i)
for (i = 0; i < MAX_MODES; i ++) {
cpi->mode_check_freq[i] = 0;
cpi->mode_test_hit_counts[i] = 0;
cpi->mode_chosen_counts[i] = 0; cpi->mode_chosen_counts[i] = 0;
}
// best quality defaults // best quality defaults
sf->RD = 1; sf->RD = 1;
......
...@@ -363,8 +363,6 @@ typedef struct VP9_COMP { ...@@ -363,8 +363,6 @@ typedef struct VP9_COMP {
// Ambient reconstruction err target for force key frames // Ambient reconstruction err target for force key frames
int ambient_err; int ambient_err;
unsigned int mode_check_freq[MAX_MODES];
unsigned int mode_test_hit_counts[MAX_MODES];
unsigned int mode_chosen_counts[MAX_MODES]; unsigned int mode_chosen_counts[MAX_MODES];
int64_t mode_skip_mask; int64_t mode_skip_mask;
int ref_frame_mask; int ref_frame_mask;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment