Merge "Remove unused ONE_LOOP entry from speed feature"

This commit is contained in:
Jingning Han 2014-12-03 11:34:42 -08:00 committed by Gerrit Code Review
commit 8f3db5f22e
2 changed files with 1 additions and 5 deletions

View File

@ -613,7 +613,6 @@ static void update_coef_probs_common(vp9_writer* const bc, VP9_COMP *cpi,
return;
}
case ONE_LOOP:
case ONE_LOOP_REDUCED: {
int updates = 0;
int noupdates_before_first = 0;

View File

@ -163,12 +163,9 @@ typedef enum {
// before the final run.
TWO_LOOP = 0,
// No dry run conducted.
ONE_LOOP = 1,
// No dry run, also only half the coef contexts and bands are updated.
// The rest are not updated at all.
ONE_LOOP_REDUCED = 2
ONE_LOOP_REDUCED = 1
} FAST_COEFF_UPDATE;
typedef struct MV_SPEED_FEATURES {