]> granicus.if.org Git - libvpx/commitdiff
vp9_tokenize.c: cleanup -wextra warnings
authorYaowu Xu <yaowu@google.com>
Tue, 13 May 2014 17:44:40 +0000 (10:44 -0700)
committerYaowu Xu <yaowu@google.com>
Wed, 14 May 2014 17:36:14 +0000 (10:36 -0700)
Change-Id: I85854f1ab2d60feea0bfe6b2141f89a998777ecb

vp9/encoder/vp9_tokenize.c

index 8ce98d9386a2501fcb849738697eb7702add9487..17214c3eeb73062c43b9c56859094e547d085c47 100644 (file)
@@ -232,7 +232,6 @@ static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize,
       cpi->common.fc.coef_probs[tx_size][type][ref];
   unsigned int (*const eob_branch)[COEFF_CONTEXTS] =
       cpi->common.counts.eob_branch[tx_size][type][ref];
-
   const uint8_t *const band = get_band_translate(tx_size);
   const int seg_eob = get_tx_eob(&cpi->common.seg, segment_id, tx_size);
 
@@ -294,6 +293,8 @@ static void is_skippable(int plane, int block,
                          BLOCK_SIZE plane_bsize, TX_SIZE tx_size,
                          void *argv) {
   struct is_skippable_args *args = argv;
+  (void)plane_bsize;
+  (void)tx_size;
   args->skippable[0] &= (!args->x->plane[plane].eobs[block]);
 }