Merge "Shrink probability remap tables."
This commit is contained in:
commit
6f229b3e62
@ -29,7 +29,7 @@ static int decode_uniform(vpx_reader *r) {
|
||||
}
|
||||
|
||||
static int inv_remap_prob(int v, int m) {
|
||||
static int inv_map_table[MAX_PROB] = {
|
||||
static uint8_t inv_map_table[MAX_PROB] = {
|
||||
7, 20, 33, 46, 59, 72, 85, 98, 111, 124, 137, 150, 163, 176, 189,
|
||||
202, 215, 228, 241, 254, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11,
|
||||
12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27,
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
#define vp10_cost_upd256 ((int)(vp10_cost_one(upd) - vp10_cost_zero(upd)))
|
||||
|
||||
static const int update_bits[255] = {
|
||||
static const uint8_t update_bits[255] = {
|
||||
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
||||
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
||||
8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
|
||||
@ -46,7 +46,7 @@ static int recenter_nonneg(int v, int m) {
|
||||
|
||||
static int remap_prob(int v, int m) {
|
||||
int i;
|
||||
static const int map_table[MAX_PROB - 1] = {
|
||||
static const uint8_t map_table[MAX_PROB - 1] = {
|
||||
// generated by:
|
||||
// map_table[j] = split_index(j, MAX_PROB - 1, MODULUS_PARAM);
|
||||
20, 21, 22, 23, 24, 25, 0, 26, 27, 28, 29, 30, 31, 32, 33,
|
||||
|
@ -29,7 +29,7 @@ static int decode_uniform(vpx_reader *r) {
|
||||
}
|
||||
|
||||
static int inv_remap_prob(int v, int m) {
|
||||
static int inv_map_table[MAX_PROB] = {
|
||||
static uint8_t inv_map_table[MAX_PROB] = {
|
||||
7, 20, 33, 46, 59, 72, 85, 98, 111, 124, 137, 150, 163, 176, 189,
|
||||
202, 215, 228, 241, 254, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11,
|
||||
12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27,
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
#define vp9_cost_upd256 ((int)(vp9_cost_one(upd) - vp9_cost_zero(upd)))
|
||||
|
||||
static const int update_bits[255] = {
|
||||
static const uint8_t update_bits[255] = {
|
||||
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
||||
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
||||
8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
|
||||
@ -46,7 +46,7 @@ static int recenter_nonneg(int v, int m) {
|
||||
|
||||
static int remap_prob(int v, int m) {
|
||||
int i;
|
||||
static const int map_table[MAX_PROB - 1] = {
|
||||
static const uint8_t map_table[MAX_PROB - 1] = {
|
||||
// generated by:
|
||||
// map_table[j] = split_index(j, MAX_PROB - 1, MODULUS_PARAM);
|
||||
20, 21, 22, 23, 24, 25, 0, 26, 27, 28, 29, 30, 31, 32, 33,
|
||||
|
Loading…
x
Reference in New Issue
Block a user