| Index: source/libvpx/vp9/decoder/vp9_detokenize.c
|
| ===================================================================
|
| --- source/libvpx/vp9/decoder/vp9_detokenize.c (revision 240950)
|
| +++ source/libvpx/vp9/decoder/vp9_detokenize.c (working copy)
|
| @@ -13,24 +13,20 @@
|
|
|
| #include "vp9/common/vp9_blockd.h"
|
| #include "vp9/common/vp9_common.h"
|
| -#include "vp9/common/vp9_seg_common.h"
|
|
|
| -#include "vp9/decoder/vp9_dboolhuff.h"
|
| #include "vp9/decoder/vp9_detokenize.h"
|
| -#include "vp9/decoder/vp9_onyxd_int.h"
|
| -#include "vp9/decoder/vp9_treereader.h"
|
|
|
| #define EOB_CONTEXT_NODE 0
|
| #define ZERO_CONTEXT_NODE 1
|
| #define ONE_CONTEXT_NODE 2
|
| -#define LOW_VAL_CONTEXT_NODE 3
|
| -#define TWO_CONTEXT_NODE 4
|
| -#define THREE_CONTEXT_NODE 5
|
| -#define HIGH_LOW_CONTEXT_NODE 6
|
| -#define CAT_ONE_CONTEXT_NODE 7
|
| -#define CAT_THREEFOUR_CONTEXT_NODE 8
|
| -#define CAT_THREE_CONTEXT_NODE 9
|
| -#define CAT_FIVE_CONTEXT_NODE 10
|
| +#define LOW_VAL_CONTEXT_NODE 0
|
| +#define TWO_CONTEXT_NODE 1
|
| +#define THREE_CONTEXT_NODE 2
|
| +#define HIGH_LOW_CONTEXT_NODE 3
|
| +#define CAT_ONE_CONTEXT_NODE 4
|
| +#define CAT_THREEFOUR_CONTEXT_NODE 5
|
| +#define CAT_THREE_CONTEXT_NODE 6
|
| +#define CAT_FIVE_CONTEXT_NODE 7
|
|
|
| #define CAT1_MIN_VAL 5
|
| #define CAT2_MIN_VAL 7
|
| @@ -61,92 +57,86 @@
|
| 254, 254, 254, 252, 249, 243, 230, 196, 177, 153, 140, 133, 130, 129, 0
|
| };
|
|
|
| -#define INCREMENT_COUNT(token) \
|
| - do { \
|
| - if (!cm->frame_parallel_decoding_mode) { \
|
| - ++coef_counts[type][ref][band][pt] \
|
| - [token >= TWO_TOKEN ? \
|
| - (token == DCT_EOB_TOKEN ? \
|
| - DCT_EOB_MODEL_TOKEN : TWO_TOKEN) : \
|
| - token]; \
|
| - } \
|
| - token_cache[scan[c]] = vp9_pt_energy_class[token]; \
|
| +#define INCREMENT_COUNT(token) \
|
| + do { \
|
| + if (!cm->frame_parallel_decoding_mode) \
|
| + ++coef_counts[band][ctx][token]; \
|
| } while (0)
|
|
|
| #define WRITE_COEF_CONTINUE(val, token) \
|
| { \
|
| - qcoeff_ptr[scan[c]] = vp9_read_and_apply_sign(r, val) * \
|
| - dq[c > 0] / (1 + (tx_size == TX_32X32)); \
|
| - INCREMENT_COUNT(token); \
|
| - c++; \
|
| + v = (val * dqv) >> dq_shift; \
|
| + dqcoeff[scan[c]] = vp9_read_bit(r) ? -v : v; \
|
| + token_cache[scan[c]] = vp9_pt_energy_class[token]; \
|
| + ++c; \
|
| + ctx = get_coef_context(nb, token_cache, c); \
|
| + dqv = dq[1]; \
|
| continue; \
|
| }
|
|
|
| -#define ADJUST_COEF(prob, bits_count) \
|
| - do { \
|
| - if (vp9_read(r, prob)) \
|
| - val += 1 << bits_count; \
|
| - } while (0);
|
| +#define ADJUST_COEF(prob, bits_count) \
|
| + do { \
|
| + val += (vp9_read(r, prob) << bits_count); \
|
| + } while (0)
|
|
|
| -static int decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd,
|
| - vp9_reader *r, int block_idx,
|
| - PLANE_TYPE type, int seg_eob, int16_t *qcoeff_ptr,
|
| - TX_SIZE tx_size, const int16_t *dq, int pt) {
|
| +static int decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd, int block,
|
| + PLANE_TYPE type, int16_t *dqcoeff, TX_SIZE tx_size,
|
| + const int16_t *dq, int ctx, vp9_reader *r) {
|
| + const int max_eob = 16 << (tx_size << 1);
|
| const FRAME_CONTEXT *const fc = &cm->fc;
|
| FRAME_COUNTS *const counts = &cm->counts;
|
| const int ref = is_inter_block(&xd->mi_8x8[0]->mbmi);
|
| int band, c = 0;
|
| - const vp9_prob (*coef_probs)[PREV_COEF_CONTEXTS][UNCONSTRAINED_NODES] =
|
| + const vp9_prob (*coef_probs)[COEFF_CONTEXTS][UNCONSTRAINED_NODES] =
|
| fc->coef_probs[tx_size][type][ref];
|
| - vp9_prob coef_probs_full[COEF_BANDS][PREV_COEF_CONTEXTS][ENTROPY_NODES];
|
| - uint8_t load_map[COEF_BANDS][PREV_COEF_CONTEXTS] = { { 0 } };
|
| const vp9_prob *prob;
|
| - vp9_coeff_count_model *coef_counts = counts->coef[tx_size];
|
| - const int16_t *scan, *nb;
|
| - const uint8_t *const band_translate = get_band_translate(tx_size);
|
| - uint8_t token_cache[1024];
|
| - get_scan(xd, tx_size, type, block_idx, &scan, &nb);
|
| + unsigned int (*coef_counts)[COEFF_CONTEXTS][UNCONSTRAINED_NODES + 1] =
|
| + counts->coef[tx_size][type][ref];
|
| + unsigned int (*eob_branch_count)[COEFF_CONTEXTS] =
|
| + counts->eob_branch[tx_size][type][ref];
|
| + uint8_t token_cache[32 * 32];
|
| + const uint8_t *cat6;
|
| + const uint8_t *band_translate = get_band_translate(tx_size);
|
| + const int dq_shift = (tx_size == TX_32X32);
|
| + const scan_order *so = get_scan(xd, tx_size, type, block);
|
| + const int16_t *scan = so->scan;
|
| + const int16_t *nb = so->neighbors;
|
| + int v;
|
| + int16_t dqv = dq[0];
|
|
|
| - while (1) {
|
| + while (c < max_eob) {
|
| int val;
|
| - const uint8_t *cat6 = cat6_prob;
|
| - if (c >= seg_eob)
|
| - break;
|
| - if (c)
|
| - pt = get_coef_context(nb, token_cache, c);
|
| - band = get_coef_band(band_translate, c);
|
| - prob = coef_probs[band][pt];
|
| + band = *band_translate++;
|
| + prob = coef_probs[band][ctx];
|
| if (!cm->frame_parallel_decoding_mode)
|
| - ++counts->eob_branch[tx_size][type][ref][band][pt];
|
| - if (!vp9_read(r, prob[EOB_CONTEXT_NODE]))
|
| + ++eob_branch_count[band][ctx];
|
| + if (!vp9_read(r, prob[EOB_CONTEXT_NODE])) {
|
| + INCREMENT_COUNT(EOB_MODEL_TOKEN);
|
| break;
|
| + }
|
|
|
| - SKIP_START:
|
| - if (c >= seg_eob)
|
| - break;
|
| - if (c)
|
| - pt = get_coef_context(nb, token_cache, c);
|
| - band = get_coef_band(band_translate, c);
|
| - prob = coef_probs[band][pt];
|
| -
|
| - if (!vp9_read(r, prob[ZERO_CONTEXT_NODE])) {
|
| + while (!vp9_read(r, prob[ZERO_CONTEXT_NODE])) {
|
| INCREMENT_COUNT(ZERO_TOKEN);
|
| + dqv = dq[1];
|
| + token_cache[scan[c]] = 0;
|
| ++c;
|
| - goto SKIP_START;
|
| + if (c >= max_eob)
|
| + return c; // zero tokens at the end (no eob token)
|
| + ctx = get_coef_context(nb, token_cache, c);
|
| + band = *band_translate++;
|
| + prob = coef_probs[band][ctx];
|
| }
|
|
|
| // ONE_CONTEXT_NODE_0_
|
| if (!vp9_read(r, prob[ONE_CONTEXT_NODE])) {
|
| + INCREMENT_COUNT(ONE_TOKEN);
|
| WRITE_COEF_CONTINUE(1, ONE_TOKEN);
|
| }
|
| - // Load full probabilities if not already loaded
|
| - if (!load_map[band][pt]) {
|
| - vp9_model_to_full_probs(coef_probs[band][pt],
|
| - coef_probs_full[band][pt]);
|
| - load_map[band][pt] = 1;
|
| - }
|
| - prob = coef_probs_full[band][pt];
|
| - // LOW_VAL_CONTEXT_NODE_0_
|
| +
|
| + INCREMENT_COUNT(TWO_TOKEN);
|
| +
|
| + prob = vp9_pareto8_full[prob[PIVOT_NODE] - 1];
|
| +
|
| if (!vp9_read(r, prob[LOW_VAL_CONTEXT_NODE])) {
|
| if (!vp9_read(r, prob[TWO_CONTEXT_NODE])) {
|
| WRITE_COEF_CONTINUE(2, TWO_TOKEN);
|
| @@ -156,35 +146,35 @@
|
| }
|
| WRITE_COEF_CONTINUE(4, FOUR_TOKEN);
|
| }
|
| - // HIGH_LOW_CONTEXT_NODE_0_
|
| +
|
| if (!vp9_read(r, prob[HIGH_LOW_CONTEXT_NODE])) {
|
| if (!vp9_read(r, prob[CAT_ONE_CONTEXT_NODE])) {
|
| val = CAT1_MIN_VAL;
|
| ADJUST_COEF(CAT1_PROB0, 0);
|
| - WRITE_COEF_CONTINUE(val, DCT_VAL_CATEGORY1);
|
| + WRITE_COEF_CONTINUE(val, CATEGORY1_TOKEN);
|
| }
|
| val = CAT2_MIN_VAL;
|
| ADJUST_COEF(CAT2_PROB1, 1);
|
| ADJUST_COEF(CAT2_PROB0, 0);
|
| - WRITE_COEF_CONTINUE(val, DCT_VAL_CATEGORY2);
|
| + WRITE_COEF_CONTINUE(val, CATEGORY2_TOKEN);
|
| }
|
| - // CAT_THREEFOUR_CONTEXT_NODE_0_
|
| +
|
| if (!vp9_read(r, prob[CAT_THREEFOUR_CONTEXT_NODE])) {
|
| if (!vp9_read(r, prob[CAT_THREE_CONTEXT_NODE])) {
|
| val = CAT3_MIN_VAL;
|
| ADJUST_COEF(CAT3_PROB2, 2);
|
| ADJUST_COEF(CAT3_PROB1, 1);
|
| ADJUST_COEF(CAT3_PROB0, 0);
|
| - WRITE_COEF_CONTINUE(val, DCT_VAL_CATEGORY3);
|
| + WRITE_COEF_CONTINUE(val, CATEGORY3_TOKEN);
|
| }
|
| val = CAT4_MIN_VAL;
|
| ADJUST_COEF(CAT4_PROB3, 3);
|
| ADJUST_COEF(CAT4_PROB2, 2);
|
| ADJUST_COEF(CAT4_PROB1, 1);
|
| ADJUST_COEF(CAT4_PROB0, 0);
|
| - WRITE_COEF_CONTINUE(val, DCT_VAL_CATEGORY4);
|
| + WRITE_COEF_CONTINUE(val, CATEGORY4_TOKEN);
|
| }
|
| - // CAT_FIVE_CONTEXT_NODE_0_:
|
| +
|
| if (!vp9_read(r, prob[CAT_FIVE_CONTEXT_NODE])) {
|
| val = CAT5_MIN_VAL;
|
| ADJUST_COEF(CAT5_PROB4, 4);
|
| @@ -192,19 +182,15 @@
|
| ADJUST_COEF(CAT5_PROB2, 2);
|
| ADJUST_COEF(CAT5_PROB1, 1);
|
| ADJUST_COEF(CAT5_PROB0, 0);
|
| - WRITE_COEF_CONTINUE(val, DCT_VAL_CATEGORY5);
|
| + WRITE_COEF_CONTINUE(val, CATEGORY5_TOKEN);
|
| }
|
| val = 0;
|
| - while (*cat6) {
|
| + cat6 = cat6_prob;
|
| + while (*cat6)
|
| val = (val << 1) | vp9_read(r, *cat6++);
|
| - }
|
| val += CAT6_MIN_VAL;
|
| - WRITE_COEF_CONTINUE(val, DCT_VAL_CATEGORY6);
|
| - }
|
|
|
| - if (c < seg_eob) {
|
| - if (!cm->frame_parallel_decoding_mode)
|
| - ++coef_counts[type][ref][band][pt][DCT_EOB_MODEL_TOKEN];
|
| + WRITE_COEF_CONTINUE(val, CATEGORY6_TOKEN);
|
| }
|
|
|
| return c;
|
| @@ -212,22 +198,14 @@
|
|
|
| int vp9_decode_block_tokens(VP9_COMMON *cm, MACROBLOCKD *xd,
|
| int plane, int block, BLOCK_SIZE plane_bsize,
|
| - TX_SIZE tx_size, vp9_reader *r) {
|
| + int x, int y, TX_SIZE tx_size, vp9_reader *r) {
|
| struct macroblockd_plane *const pd = &xd->plane[plane];
|
| - const int seg_eob = get_tx_eob(&cm->seg, xd->mi_8x8[0]->mbmi.segment_id,
|
| - tx_size);
|
| - int aoff, loff, eob, pt;
|
| - txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &aoff, &loff);
|
| - pt = get_entropy_context(tx_size, pd->above_context + aoff,
|
| - pd->left_context + loff);
|
| -
|
| - eob = decode_coefs(cm, xd, r, block,
|
| - pd->plane_type, seg_eob, BLOCK_OFFSET(pd->qcoeff, block),
|
| - tx_size, pd->dequant, pt);
|
| -
|
| - set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, aoff, loff);
|
| -
|
| - pd->eobs[block] = eob;
|
| + const int ctx = get_entropy_context(tx_size, pd->above_context + x,
|
| + pd->left_context + y);
|
| + const int eob = decode_coefs(cm, xd, block, pd->plane_type,
|
| + BLOCK_OFFSET(pd->dqcoeff, block), tx_size,
|
| + pd->dequant, ctx, r);
|
| + set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, x, y);
|
| return eob;
|
| }
|
|
|
|
|