Index: source/libvpx/vp9/encoder/vp9_tokenize.c |
=================================================================== |
--- source/libvpx/vp9/encoder/vp9_tokenize.c (revision 240950) |
+++ source/libvpx/vp9/encoder/vp9_tokenize.c (working copy) |
@@ -21,19 +21,91 @@ |
#include "vp9/common/vp9_seg_common.h" |
#include "vp9/common/vp9_entropy.h" |
-/* Global event counters used for accumulating statistics across several |
- compressions, then generating vp9_context.c = initial stats. */ |
- |
-#ifdef ENTROPY_STATS |
-vp9_coeff_accum context_counters[TX_SIZES][BLOCK_TYPES]; |
-extern vp9_coeff_stats tree_update_hist[TX_SIZES][BLOCK_TYPES]; |
-#endif /* ENTROPY_STATS */ |
- |
static TOKENVALUE dct_value_tokens[DCT_MAX_VALUE * 2]; |
const TOKENVALUE *vp9_dct_value_tokens_ptr; |
static int dct_value_cost[DCT_MAX_VALUE * 2]; |
const int *vp9_dct_value_cost_ptr; |
+// Array indices are identical to previously-existing CONTEXT_NODE indices |
+const vp9_tree_index vp9_coef_tree[TREE_SIZE(ENTROPY_TOKENS)] = { |
+ -EOB_TOKEN, 2, // 0 = EOB |
+ -ZERO_TOKEN, 4, // 1 = ZERO |
+ -ONE_TOKEN, 6, // 2 = ONE |
+ 8, 12, // 3 = LOW_VAL |
+ -TWO_TOKEN, 10, // 4 = TWO |
+ -THREE_TOKEN, -FOUR_TOKEN, // 5 = THREE |
+ 14, 16, // 6 = HIGH_LOW |
+ -CATEGORY1_TOKEN, -CATEGORY2_TOKEN, // 7 = CAT_ONE |
+ 18, 20, // 8 = CAT_THREEFOUR |
+ -CATEGORY3_TOKEN, -CATEGORY4_TOKEN, // 9 = CAT_THREE |
+ -CATEGORY5_TOKEN, -CATEGORY6_TOKEN // 10 = CAT_FIVE |
+}; |
+ |
+// Unconstrained Node Tree |
+const vp9_tree_index vp9_coef_con_tree[TREE_SIZE(ENTROPY_TOKENS)] = { |
+ 2, 6, // 0 = LOW_VAL |
+ -TWO_TOKEN, 4, // 1 = TWO |
+ -THREE_TOKEN, -FOUR_TOKEN, // 2 = THREE |
+ 8, 10, // 3 = HIGH_LOW |
+ -CATEGORY1_TOKEN, -CATEGORY2_TOKEN, // 4 = CAT_ONE |
+ 12, 14, // 5 = CAT_THREEFOUR |
+ -CATEGORY3_TOKEN, -CATEGORY4_TOKEN, // 6 = CAT_THREE |
+ -CATEGORY5_TOKEN, -CATEGORY6_TOKEN // 7 = CAT_FIVE |
+}; |
+ |
+static const vp9_prob Pcat1[] = { 159}; |
+static const vp9_prob Pcat2[] = { 165, 145}; |
+static const vp9_prob Pcat3[] = { 173, 148, 140}; |
+static const vp9_prob Pcat4[] = { 176, 155, 140, 135}; |
+static const vp9_prob Pcat5[] = { 180, 157, 141, 134, 130}; |
+static const vp9_prob Pcat6[] = { |
+ 254, 254, 254, 252, 249, 243, 230, 196, 177, 153, 140, 133, 130, 129 |
+}; |
+ |
+static vp9_tree_index cat1[2], cat2[4], cat3[6], cat4[8], cat5[10], cat6[28]; |
+ |
+static void init_bit_tree(vp9_tree_index *p, int n) { |
+ int i = 0; |
+ |
+ while (++i < n) { |
+ p[0] = p[1] = i << 1; |
+ p += 2; |
+ } |
+ |
+ p[0] = p[1] = 0; |
+} |
+ |
+static void init_bit_trees() { |
+ init_bit_tree(cat1, 1); |
+ init_bit_tree(cat2, 2); |
+ init_bit_tree(cat3, 3); |
+ init_bit_tree(cat4, 4); |
+ init_bit_tree(cat5, 5); |
+ init_bit_tree(cat6, 14); |
+} |
+ |
+const vp9_extra_bit vp9_extra_bits[ENTROPY_TOKENS] = { |
+ {0, 0, 0, 0}, // ZERO_TOKEN |
+ {0, 0, 0, 1}, // ONE_TOKEN |
+ {0, 0, 0, 2}, // TWO_TOKEN |
+ {0, 0, 0, 3}, // THREE_TOKEN |
+ {0, 0, 0, 4}, // FOUR_TOKEN |
+ {cat1, Pcat1, 1, 5}, // CATEGORY1_TOKEN |
+ {cat2, Pcat2, 2, 7}, // CATEGORY2_TOKEN |
+ {cat3, Pcat3, 3, 11}, // CATEGORY3_TOKEN |
+ {cat4, Pcat4, 4, 19}, // CATEGORY4_TOKEN |
+ {cat5, Pcat5, 5, 35}, // CATEGORY5_TOKEN |
+ {cat6, Pcat6, 14, 67}, // CATEGORY6_TOKEN |
+ {0, 0, 0, 0} // EOB_TOKEN |
+}; |
+ |
+struct vp9_token vp9_coef_encodings[ENTROPY_TOKENS]; |
+ |
+void vp9_coef_tree_initialize() { |
+ init_bit_trees(); |
+ vp9_tokens_from_tree(vp9_coef_encodings, vp9_coef_tree); |
+} |
+ |
static void fill_value_tokens() { |
TOKENVALUE *const t = dct_value_tokens + DCT_MAX_VALUE; |
const vp9_extra_bit *const e = vp9_extra_bits; |
@@ -65,7 +137,7 @@ |
// initialize the cost for extra bits for all possible coefficient value. |
{ |
int cost = 0; |
- const vp9_extra_bit *p = vp9_extra_bits + t[i].token; |
+ const vp9_extra_bit *p = &vp9_extra_bits[t[i].token]; |
if (p->base_val) { |
const int extra = t[i].extra; |
@@ -81,7 +153,7 @@ |
} while (++i < DCT_MAX_VALUE); |
vp9_dct_value_tokens_ptr = dct_value_tokens + DCT_MAX_VALUE; |
- vp9_dct_value_cost_ptr = dct_value_cost + DCT_MAX_VALUE; |
+ vp9_dct_value_cost_ptr = dct_value_cost + DCT_MAX_VALUE; |
} |
struct tokenize_b_args { |
@@ -89,16 +161,18 @@ |
MACROBLOCKD *xd; |
TOKENEXTRA **tp; |
TX_SIZE tx_size; |
+ uint8_t *token_cache; |
}; |
static void set_entropy_context_b(int plane, int block, BLOCK_SIZE plane_bsize, |
TX_SIZE tx_size, void *arg) { |
struct tokenize_b_args* const args = arg; |
MACROBLOCKD *const xd = args->xd; |
+ struct macroblock_plane *p = &args->cpi->mb.plane[plane]; |
struct macroblockd_plane *pd = &xd->plane[plane]; |
int aoff, loff; |
txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &aoff, &loff); |
- set_contexts(xd, pd, plane_bsize, tx_size, pd->eobs[block] > 0, aoff, loff); |
+ set_contexts(xd, pd, plane_bsize, tx_size, p->eobs[block] > 0, aoff, loff); |
} |
static void tokenize_b(int plane, int block, BLOCK_SIZE plane_bsize, |
@@ -107,23 +181,25 @@ |
VP9_COMP *cpi = args->cpi; |
MACROBLOCKD *xd = args->xd; |
TOKENEXTRA **tp = args->tp; |
+ uint8_t *token_cache = args->token_cache; |
+ struct macroblock_plane *p = &cpi->mb.plane[plane]; |
struct macroblockd_plane *pd = &xd->plane[plane]; |
MB_MODE_INFO *mbmi = &xd->mi_8x8[0]->mbmi; |
int pt; /* near block/prev token context index */ |
int c = 0, rc = 0; |
TOKENEXTRA *t = *tp; /* store tokens starting here */ |
- const int eob = pd->eobs[block]; |
+ const int eob = p->eobs[block]; |
const PLANE_TYPE type = pd->plane_type; |
- const int16_t *qcoeff_ptr = BLOCK_OFFSET(pd->qcoeff, block); |
- |
+ const int16_t *qcoeff_ptr = BLOCK_OFFSET(p->qcoeff, block); |
const int segment_id = mbmi->segment_id; |
const int16_t *scan, *nb; |
+ const scan_order *so; |
vp9_coeff_count *const counts = cpi->coef_counts[tx_size]; |
vp9_coeff_probs_model *const coef_probs = cpi->common.fc.coef_probs[tx_size]; |
const int ref = is_inter_block(mbmi); |
- uint8_t token_cache[1024]; |
const uint8_t *const band_translate = get_band_translate(tx_size); |
const int seg_eob = get_tx_eob(&cpi->common.seg, segment_id, tx_size); |
+ |
int aoff, loff; |
txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &aoff, &loff); |
@@ -131,10 +207,13 @@ |
pt = get_entropy_context(tx_size, pd->above_context + aoff, |
pd->left_context + loff); |
- get_scan(xd, tx_size, type, block, &scan, &nb); |
+ so = get_scan(xd, tx_size, type, block); |
+ scan = so->scan; |
+ nb = so->neighbors; |
+ |
c = 0; |
do { |
- const int band = get_coef_band(band_translate, c); |
+ const int band = band_translate[c]; |
int token; |
int v = 0; |
rc = scan[c]; |
@@ -147,7 +226,7 @@ |
t->extra = vp9_dct_value_tokens_ptr[v].extra; |
token = vp9_dct_value_tokens_ptr[v].token; |
} else { |
- token = DCT_EOB_TOKEN; |
+ token = EOB_TOKEN; |
} |
t->token = token; |
@@ -170,7 +249,7 @@ |
} |
struct is_skippable_args { |
- MACROBLOCKD *xd; |
+ MACROBLOCK *x; |
int *skippable; |
}; |
@@ -178,21 +257,21 @@ |
BLOCK_SIZE plane_bsize, TX_SIZE tx_size, |
void *argv) { |
struct is_skippable_args *args = argv; |
- args->skippable[0] &= (!args->xd->plane[plane].eobs[block]); |
+ args->skippable[0] &= (!args->x->plane[plane].eobs[block]); |
} |
-int vp9_sb_is_skippable(MACROBLOCKD *xd, BLOCK_SIZE bsize) { |
+static int sb_is_skippable(MACROBLOCK *x, BLOCK_SIZE bsize) { |
int result = 1; |
- struct is_skippable_args args = {xd, &result}; |
- foreach_transformed_block(xd, bsize, is_skippable, &args); |
+ struct is_skippable_args args = {x, &result}; |
+ foreach_transformed_block(&x->e_mbd, bsize, is_skippable, &args); |
return result; |
} |
-int vp9_is_skippable_in_plane(MACROBLOCKD *xd, BLOCK_SIZE bsize, |
- int plane) { |
+int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) { |
int result = 1; |
- struct is_skippable_args args = {xd, &result}; |
- foreach_transformed_block_in_plane(xd, bsize, plane, is_skippable, &args); |
+ struct is_skippable_args args = {x, &result}; |
+ foreach_transformed_block_in_plane(&x->e_mbd, bsize, plane, is_skippable, |
+ &args); |
return result; |
} |
@@ -202,15 +281,15 @@ |
MACROBLOCKD *const xd = &cpi->mb.e_mbd; |
MB_MODE_INFO *const mbmi = &xd->mi_8x8[0]->mbmi; |
TOKENEXTRA *t_backup = *t; |
- const int mb_skip_context = vp9_get_pred_context_mbskip(xd); |
+ const int ctx = vp9_get_skip_context(xd); |
const int skip_inc = !vp9_segfeature_active(&cm->seg, mbmi->segment_id, |
SEG_LVL_SKIP); |
- struct tokenize_b_args arg = {cpi, xd, t, mbmi->tx_size}; |
+ struct tokenize_b_args arg = {cpi, xd, t, mbmi->tx_size, cpi->mb.token_cache}; |
- mbmi->skip_coeff = vp9_sb_is_skippable(xd, bsize); |
+ mbmi->skip_coeff = sb_is_skippable(&cpi->mb, bsize); |
if (mbmi->skip_coeff) { |
if (!dry_run) |
- cm->counts.mbskip[mb_skip_context][1] += skip_inc; |
+ cm->counts.mbskip[ctx][1] += skip_inc; |
reset_skip_context(xd, bsize); |
if (dry_run) |
*t = t_backup; |
@@ -218,7 +297,7 @@ |
} |
if (!dry_run) { |
- cm->counts.mbskip[mb_skip_context][0] += skip_inc; |
+ cm->counts.mbskip[ctx][0] += skip_inc; |
foreach_transformed_block(xd, bsize, tokenize_b, &arg); |
} else { |
foreach_transformed_block(xd, bsize, set_entropy_context_b, &arg); |
@@ -226,149 +305,6 @@ |
} |
} |
-#ifdef ENTROPY_STATS |
-void init_context_counters(void) { |
- FILE *f = fopen("context.bin", "rb"); |
- if (!f) { |
- vp9_zero(context_counters); |
- } else { |
- fread(context_counters, sizeof(context_counters), 1, f); |
- fclose(f); |
- } |
- |
- f = fopen("treeupdate.bin", "rb"); |
- if (!f) { |
- vpx_memset(tree_update_hist, 0, sizeof(tree_update_hist)); |
- } else { |
- fread(tree_update_hist, sizeof(tree_update_hist), 1, f); |
- fclose(f); |
- } |
-} |
- |
-static void print_counter(FILE *f, vp9_coeff_accum *context_counters, |
- int block_types, const char *header) { |
- int type, ref, band, pt, t; |
- |
- fprintf(f, "static const vp9_coeff_count %s = {\n", header); |
- |
-#define Comma(X) (X ? "," : "") |
- type = 0; |
- do { |
- ref = 0; |
- fprintf(f, "%s\n { /* block Type %d */", Comma(type), type); |
- do { |
- fprintf(f, "%s\n { /* %s */", Comma(type), ref ? "Inter" : "Intra"); |
- band = 0; |
- do { |
- fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band); |
- pt = 0; |
- do { |
- fprintf(f, "%s\n {", Comma(pt)); |
- |
- t = 0; |
- do { |
- const int64_t x = context_counters[type][ref][band][pt][t]; |
- const int y = (int) x; |
- |
- assert(x == (int64_t) y); /* no overflow handling yet */ |
- fprintf(f, "%s %d", Comma(t), y); |
- } while (++t < 1 + MAX_ENTROPY_TOKENS); |
- fprintf(f, "}"); |
- } while (++pt < PREV_COEF_CONTEXTS); |
- fprintf(f, "\n }"); |
- } while (++band < COEF_BANDS); |
- fprintf(f, "\n }"); |
- } while (++ref < REF_TYPES); |
- fprintf(f, "\n }"); |
- } while (++type < block_types); |
- fprintf(f, "\n};\n"); |
-} |
- |
-static void print_probs(FILE *f, vp9_coeff_accum *context_counters, |
- int block_types, const char *header) { |
- int type, ref, band, pt, t; |
- |
- fprintf(f, "static const vp9_coeff_probs %s = {", header); |
- |
- type = 0; |
-#define Newline(x, spaces) (x ? " " : "\n" spaces) |
- do { |
- fprintf(f, "%s%s{ /* block Type %d */", |
- Comma(type), Newline(type, " "), type); |
- ref = 0; |
- do { |
- fprintf(f, "%s%s{ /* %s */", |
- Comma(band), Newline(band, " "), ref ? "Inter" : "Intra"); |
- band = 0; |
- do { |
- fprintf(f, "%s%s{ /* Coeff Band %d */", |
- Comma(band), Newline(band, " "), band); |
- pt = 0; |
- do { |
- unsigned int branch_ct[ENTROPY_NODES][2]; |
- unsigned int coef_counts[MAX_ENTROPY_TOKENS + 1]; |
- vp9_prob coef_probs[ENTROPY_NODES]; |
- |
- if (pt >= 3 && band == 0) |
- break; |
- for (t = 0; t < MAX_ENTROPY_TOKENS + 1; ++t) |
- coef_counts[t] = context_counters[type][ref][band][pt][t]; |
- vp9_tree_probs_from_distribution(vp9_coef_tree, coef_probs, |
- branch_ct, coef_counts, 0); |
- branch_ct[0][1] = coef_counts[MAX_ENTROPY_TOKENS] - branch_ct[0][0]; |
- coef_probs[0] = get_binary_prob(branch_ct[0][0], branch_ct[0][1]); |
- fprintf(f, "%s\n {", Comma(pt)); |
- |
- t = 0; |
- do { |
- fprintf(f, "%s %3d", Comma(t), coef_probs[t]); |
- } while (++t < ENTROPY_NODES); |
- |
- fprintf(f, " }"); |
- } while (++pt < PREV_COEF_CONTEXTS); |
- fprintf(f, "\n }"); |
- } while (++band < COEF_BANDS); |
- fprintf(f, "\n }"); |
- } while (++ref < REF_TYPES); |
- fprintf(f, "\n }"); |
- } while (++type < block_types); |
- fprintf(f, "\n};\n"); |
-} |
- |
-void print_context_counters() { |
- FILE *f = fopen("vp9_context.c", "w"); |
- |
- fprintf(f, "#include \"vp9_entropy.h\"\n"); |
- fprintf(f, "\n/* *** GENERATED FILE: DO NOT EDIT *** */\n\n"); |
- |
- /* print counts */ |
- print_counter(f, context_counters[TX_4X4], BLOCK_TYPES, |
- "vp9_default_coef_counts_4x4[BLOCK_TYPES]"); |
- print_counter(f, context_counters[TX_8X8], BLOCK_TYPES, |
- "vp9_default_coef_counts_8x8[BLOCK_TYPES]"); |
- print_counter(f, context_counters[TX_16X16], BLOCK_TYPES, |
- "vp9_default_coef_counts_16x16[BLOCK_TYPES]"); |
- print_counter(f, context_counters[TX_32X32], BLOCK_TYPES, |
- "vp9_default_coef_counts_32x32[BLOCK_TYPES]"); |
- |
- /* print coefficient probabilities */ |
- print_probs(f, context_counters[TX_4X4], BLOCK_TYPES, |
- "default_coef_probs_4x4[BLOCK_TYPES]"); |
- print_probs(f, context_counters[TX_8X8], BLOCK_TYPES, |
- "default_coef_probs_8x8[BLOCK_TYPES]"); |
- print_probs(f, context_counters[TX_16X16], BLOCK_TYPES, |
- "default_coef_probs_16x16[BLOCK_TYPES]"); |
- print_probs(f, context_counters[TX_32X32], BLOCK_TYPES, |
- "default_coef_probs_32x32[BLOCK_TYPES]"); |
- |
- fclose(f); |
- |
- f = fopen("context.bin", "wb"); |
- fwrite(context_counters, sizeof(context_counters), 1, f); |
- fclose(f); |
-} |
-#endif |
- |
void vp9_tokenize_initialize() { |
fill_value_tokens(); |
} |