cpplint issues vp9_tokenize.c resolved
Change-Id: Id4ec0084641d2ad4def95fb05239455fbc25f9b9
This commit is contained in:
parent
1ab60f7bfb
commit
c6960b6086
@ -38,7 +38,6 @@ static int dct_value_cost[DCT_MAX_VALUE * 2];
|
|||||||
const int *vp9_dct_value_cost_ptr;
|
const int *vp9_dct_value_cost_ptr;
|
||||||
|
|
||||||
static void fill_value_tokens() {
|
static void fill_value_tokens() {
|
||||||
|
|
||||||
TOKENVALUE *const t = dct_value_tokens + DCT_MAX_VALUE;
|
TOKENVALUE *const t = dct_value_tokens + DCT_MAX_VALUE;
|
||||||
const vp9_extra_bit *const e = vp9_extra_bits;
|
const vp9_extra_bit *const e = vp9_extra_bits;
|
||||||
|
|
||||||
@ -60,9 +59,9 @@ static void fill_value_tokens() {
|
|||||||
|
|
||||||
t[i].token = --j;
|
t[i].token = --j;
|
||||||
eb |= (a - e[j].base_val) << 1;
|
eb |= (a - e[j].base_val) << 1;
|
||||||
} else
|
} else {
|
||||||
t[i].token = a;
|
t[i].token = a;
|
||||||
|
}
|
||||||
t[i].extra = eb;
|
t[i].extra = eb;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,9 +80,7 @@ static void fill_value_tokens() {
|
|||||||
cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
|
cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
|
||||||
dct_value_cost[i + DCT_MAX_VALUE] = cost;
|
dct_value_cost[i + DCT_MAX_VALUE] = cost;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} while (++i < DCT_MAX_VALUE);
|
} while (++i < DCT_MAX_VALUE);
|
||||||
|
|
||||||
vp9_dct_value_tokens_ptr = dct_value_tokens + DCT_MAX_VALUE;
|
vp9_dct_value_tokens_ptr = dct_value_tokens + DCT_MAX_VALUE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user