]> granicus.if.org Git - libvpx/commitdiff
Remove unused ONE_LOOP entry from speed feature
authorJingning Han <jingning@google.com>
Wed, 3 Dec 2014 02:26:03 +0000 (18:26 -0800)
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>
Wed, 3 Dec 2014 17:17:08 +0000 (09:17 -0800)
Change-Id: I56ead0ebc2491144c4e79e5859b05e126176702c

vp9/encoder/vp9_bitstream.c
vp9/encoder/vp9_speed_features.h

index 2520a45141462d09bfdeb47836b495b3d90fbbbf..4d88fb5a5dfbf1766effebb963031a43efb92457 100644 (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;
index 26bd6833082b67b5e36f005c9db813e71e222b01..c2cfd62da0d5379d36215174a513b4d0177f842d 100644 (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 {