2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/encoder/vp9_onyx_int.h"
|
|
|
|
#include "vp9/encoder/vp9_tokenize.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_pred_common.h"
|
|
|
|
#include "vp9/common/vp9_seg_common.h"
|
|
|
|
#include "vp9/common/vp9_entropy.h"
|
2011-10-05 12:26:00 +02:00
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
/* Global event counters used for accumulating statistics across several
|
2012-11-27 22:59:17 +01:00
|
|
|
compressions, then generating vp9_context.c = initial stats. */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#ifdef ENTROPY_STATS
|
2012-03-19 19:02:04 +01:00
|
|
|
INT64 context_counters[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
|
2012-09-10 07:42:35 +02:00
|
|
|
INT64 hybrid_context_counters[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
|
|
|
|
|
2012-05-02 22:53:15 +02:00
|
|
|
INT64 context_counters_8x8[BLOCK_TYPES_8X8] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
|
2012-09-10 07:42:35 +02:00
|
|
|
INT64 hybrid_context_counters_8x8[BLOCK_TYPES_8X8] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
|
|
|
|
|
2012-08-03 02:03:14 +02:00
|
|
|
INT64 context_counters_16x16[BLOCK_TYPES_16X16] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
|
2012-09-10 07:42:35 +02:00
|
|
|
INT64 hybrid_context_counters_16x16[BLOCK_TYPES_16X16] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];
|
|
|
|
|
2012-08-03 02:03:14 +02:00
|
|
|
extern unsigned int tree_update_hist[BLOCK_TYPES][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][ENTROPY_NODES][2];
|
2012-09-10 07:42:35 +02:00
|
|
|
extern unsigned int hybrid_tree_update_hist[BLOCK_TYPES][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][ENTROPY_NODES][2];
|
2012-08-03 02:03:14 +02:00
|
|
|
extern unsigned int tree_update_hist_8x8[BLOCK_TYPES_8X8][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][ENTROPY_NODES] [2];
|
2012-09-10 07:42:35 +02:00
|
|
|
extern unsigned int hybrid_tree_update_hist_8x8[BLOCK_TYPES_8X8][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][ENTROPY_NODES] [2];
|
2012-08-03 02:03:14 +02:00
|
|
|
extern unsigned int tree_update_hist_16x16[BLOCK_TYPES_16X16][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][ENTROPY_NODES] [2];
|
2012-09-10 07:42:35 +02:00
|
|
|
extern unsigned int hybrid_tree_update_hist_16x16[BLOCK_TYPES_16X16][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][ENTROPY_NODES] [2];
|
2012-10-10 20:20:33 +02:00
|
|
|
#endif /* ENTROPY_STATS */
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static TOKENVALUE dct_value_tokens[DCT_MAX_VALUE * 2];
|
2012-10-31 01:12:12 +01:00
|
|
|
const TOKENVALUE *vp9_dct_value_tokens_ptr;
|
2012-07-14 00:21:29 +02:00
|
|
|
static int dct_value_cost[DCT_MAX_VALUE * 2];
|
2012-10-31 01:12:12 +01:00
|
|
|
const int *vp9_dct_value_cost_ptr;
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static void fill_value_tokens() {
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
TOKENVALUE *const t = dct_value_tokens + DCT_MAX_VALUE;
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_extra_bit_struct *const e = vp9_extra_bits;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int i = -DCT_MAX_VALUE;
|
|
|
|
int sign = 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
do {
|
|
|
|
if (!i)
|
|
|
|
sign = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
{
|
|
|
|
const int a = sign ? -i : i;
|
|
|
|
int eb = sign;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (a > 4) {
|
|
|
|
int j = 4;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
while (++j < 11 && e[j].base_val <= a) {}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
t[i].Token = --j;
|
|
|
|
eb |= (a - e[j].base_val) << 1;
|
|
|
|
} else
|
|
|
|
t[i].Token = a;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
t[i].Extra = eb;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// initialize the cost for extra bits for all possible coefficient value.
|
|
|
|
{
|
|
|
|
int cost = 0;
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_extra_bit_struct *p = vp9_extra_bits + t[i].Token;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (p->base_val) {
|
|
|
|
const int extra = t[i].Extra;
|
|
|
|
const int Length = p->Len;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (Length)
|
2012-10-31 22:40:53 +01:00
|
|
|
cost += treed_cost(p->tree, p->prob, extra >> 1, Length);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
|
2012-07-14 00:21:29 +02:00
|
|
|
dct_value_cost[i + DCT_MAX_VALUE] = cost;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
} while (++i < DCT_MAX_VALUE);
|
|
|
|
|
2012-10-31 01:12:12 +01:00
|
|
|
vp9_dct_value_tokens_ptr = dct_value_tokens + DCT_MAX_VALUE;
|
|
|
|
vp9_dct_value_cost_ptr = dct_value_cost + DCT_MAX_VALUE;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
static void tokenize_b(VP9_COMP *cpi,
|
2012-10-25 18:14:21 +02:00
|
|
|
MACROBLOCKD *xd,
|
|
|
|
const BLOCKD * const b,
|
|
|
|
TOKENEXTRA **tp,
|
|
|
|
PLANE_TYPE type,
|
|
|
|
ENTROPY_CONTEXT *a,
|
|
|
|
ENTROPY_CONTEXT *l,
|
|
|
|
TX_SIZE tx_size,
|
|
|
|
int dry_run) {
|
2012-08-03 02:03:14 +02:00
|
|
|
int pt; /* near block/prev token context index */
|
2012-10-15 00:29:56 +02:00
|
|
|
int c = (type == PLANE_TYPE_Y_NO_DC) ? 1 : 0;
|
2012-08-03 02:03:14 +02:00
|
|
|
const int eob = b->eob; /* one beyond last nonzero coeff */
|
|
|
|
TOKENEXTRA *t = *tp; /* store tokens starting here */
|
|
|
|
const short *qcoeff_ptr = b->qcoeff;
|
2012-10-25 18:14:21 +02:00
|
|
|
int seg_eob;
|
2012-08-03 02:03:14 +02:00
|
|
|
int segment_id = xd->mode_info_context->mbmi.segment_id;
|
2012-10-25 18:14:21 +02:00
|
|
|
const int *bands, *scan;
|
|
|
|
unsigned int (*counts)[COEF_BANDS][PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS];
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_prob (*probs)[COEF_BANDS][PREV_COEF_CONTEXTS][ENTROPY_NODES];
|
2012-10-25 18:14:21 +02:00
|
|
|
const TX_TYPE tx_type = (type == PLANE_TYPE_Y_WITH_DC) ?
|
|
|
|
get_tx_type(xd, b) : DCT_DCT;
|
2012-08-03 02:03:14 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
VP9_COMBINEENTROPYCONTEXTS(pt, *a, *l);
|
2012-10-25 18:14:21 +02:00
|
|
|
switch (tx_size) {
|
|
|
|
default:
|
|
|
|
case TX_4X4:
|
|
|
|
seg_eob = 16;
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands;
|
|
|
|
scan = vp9_default_zig_zag1d;
|
2012-10-25 18:14:21 +02:00
|
|
|
if (tx_type != DCT_DCT) {
|
|
|
|
counts = cpi->hybrid_coef_counts;
|
|
|
|
probs = cpi->common.fc.hybrid_coef_probs;
|
|
|
|
if (tx_type == ADST_DCT) {
|
2012-10-31 01:12:12 +01:00
|
|
|
scan = vp9_row_scan;
|
2012-10-25 18:14:21 +02:00
|
|
|
} else if (tx_type == DCT_ADST) {
|
2012-10-31 01:12:12 +01:00
|
|
|
scan = vp9_col_scan;
|
2012-10-25 18:14:21 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
counts = cpi->coef_counts;
|
|
|
|
probs = cpi->common.fc.coef_probs;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TX_8X8:
|
|
|
|
if (type == PLANE_TYPE_Y2) {
|
|
|
|
seg_eob = 4;
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands;
|
|
|
|
scan = vp9_default_zig_zag1d;
|
2012-10-25 18:14:21 +02:00
|
|
|
} else {
|
|
|
|
seg_eob = 64;
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands_8x8;
|
|
|
|
scan = vp9_default_zig_zag1d_8x8;
|
2012-10-25 18:14:21 +02:00
|
|
|
}
|
|
|
|
if (tx_type != DCT_DCT) {
|
|
|
|
counts = cpi->hybrid_coef_counts_8x8;
|
|
|
|
probs = cpi->common.fc.hybrid_coef_probs_8x8;
|
|
|
|
} else {
|
|
|
|
counts = cpi->coef_counts_8x8;
|
|
|
|
probs = cpi->common.fc.coef_probs_8x8;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TX_16X16:
|
|
|
|
seg_eob = 256;
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands_16x16;
|
|
|
|
scan = vp9_default_zig_zag1d_16x16;
|
2012-10-25 18:14:21 +02:00
|
|
|
if (tx_type != DCT_DCT) {
|
|
|
|
counts = cpi->hybrid_coef_counts_16x16;
|
|
|
|
probs = cpi->common.fc.hybrid_coef_probs_16x16;
|
|
|
|
} else {
|
|
|
|
counts = cpi->coef_counts_16x16;
|
|
|
|
probs = cpi->common.fc.coef_probs_16x16;
|
|
|
|
}
|
|
|
|
break;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
2012-10-30 06:15:27 +01:00
|
|
|
if (vp9_segfeature_active(xd, segment_id, SEG_LVL_EOB))
|
|
|
|
seg_eob = vp9_get_segdata(xd, segment_id, SEG_LVL_EOB);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-10-13 20:46:21 +02:00
|
|
|
do {
|
2012-10-25 18:14:21 +02:00
|
|
|
const int band = bands[c];
|
2012-10-13 20:46:21 +02:00
|
|
|
int token;
|
|
|
|
|
|
|
|
if (c < eob) {
|
2012-10-25 18:14:21 +02:00
|
|
|
const int rc = scan[c];
|
2012-10-13 20:46:21 +02:00
|
|
|
const int v = qcoeff_ptr[rc];
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-10-25 18:14:21 +02:00
|
|
|
assert(-DCT_MAX_VALUE <= v && v < DCT_MAX_VALUE);
|
|
|
|
|
2012-10-31 01:12:12 +01:00
|
|
|
t->Extra = vp9_dct_value_tokens_ptr[v].Extra;
|
|
|
|
token = vp9_dct_value_tokens_ptr[v].Token;
|
2012-10-25 18:14:21 +02:00
|
|
|
} else {
|
|
|
|
token = DCT_EOB_TOKEN;
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
t->Token = token;
|
2012-10-25 18:14:21 +02:00
|
|
|
t->context_tree = probs[type][band][pt];
|
|
|
|
t->skip_eob_node = (pt == 0) && ((band > 0 && type != PLANE_TYPE_Y_NO_DC) ||
|
|
|
|
(band > 1 && type == PLANE_TYPE_Y_NO_DC));
|
2012-10-31 01:12:12 +01:00
|
|
|
assert(vp9_coef_encodings[t->Token].Len - t->skip_eob_node > 0);
|
2012-09-10 07:42:35 +02:00
|
|
|
if (!dry_run) {
|
2012-10-25 18:14:21 +02:00
|
|
|
++counts[type][band][pt][token];
|
2012-09-10 07:42:35 +02:00
|
|
|
}
|
2012-10-31 01:12:12 +01:00
|
|
|
pt = vp9_prev_token_class[token];
|
2012-07-23 23:58:07 +02:00
|
|
|
++t;
|
2012-10-13 20:46:21 +02:00
|
|
|
} while (c < eob && ++c < seg_eob);
|
|
|
|
|
|
|
|
*tp = t;
|
2012-11-29 02:34:02 +01:00
|
|
|
*a = *l = (c > !type); /* 0 <-> all coeff data is zero */
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
int vp9_mby_is_skippable_4x4(MACROBLOCKD *xd, int has_2nd_order) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int skip = 1;
|
|
|
|
int i = 0;
|
2010-10-07 07:39:16 +02:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
if (has_2nd_order) {
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 0; i < 16; i++)
|
2012-08-15 12:00:53 +02:00
|
|
|
skip &= (xd->block[i].eob < 2);
|
|
|
|
skip &= (!xd->block[24].eob);
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
|
|
|
for (i = 0; i < 16; i++)
|
2012-08-15 12:00:53 +02:00
|
|
|
skip &= (!xd->block[i].eob);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
return skip;
|
2012-02-22 03:10:18 +01:00
|
|
|
}
|
2010-10-07 07:39:16 +02:00
|
|
|
|
2012-10-30 05:07:40 +01:00
|
|
|
int vp9_mbuv_is_skippable_4x4(MACROBLOCKD *xd) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int skip = 1;
|
|
|
|
int i;
|
2010-10-07 07:39:16 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = 16; i < 24; i++)
|
2012-08-15 12:00:53 +02:00
|
|
|
skip &= (!xd->block[i].eob);
|
2012-07-14 00:21:29 +02:00
|
|
|
return skip;
|
2010-10-07 07:39:16 +02:00
|
|
|
}
|
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
static int mb_is_skippable_4x4(MACROBLOCKD *xd, int has_2nd_order) {
|
|
|
|
return (vp9_mby_is_skippable_4x4(xd, has_2nd_order) &
|
2012-10-30 05:07:40 +01:00
|
|
|
vp9_mbuv_is_skippable_4x4(xd));
|
2012-02-22 03:10:18 +01:00
|
|
|
}
|
2012-02-29 02:11:12 +01:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
int vp9_mby_is_skippable_8x8(MACROBLOCKD *xd, int has_2nd_order) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int skip = 1;
|
|
|
|
int i = 0;
|
2011-11-18 03:31:00 +01:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
if (has_2nd_order) {
|
2012-09-12 04:36:28 +02:00
|
|
|
for (i = 0; i < 16; i += 4)
|
|
|
|
skip &= (xd->block[i].eob < 2);
|
|
|
|
skip &= (!xd->block[24].eob);
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < 16; i += 4)
|
|
|
|
skip &= (!xd->block[i].eob);
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
return skip;
|
2012-02-22 03:10:18 +01:00
|
|
|
}
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-10-30 05:07:40 +01:00
|
|
|
int vp9_mbuv_is_skippable_8x8(MACROBLOCKD *xd) {
|
2012-08-15 12:00:53 +02:00
|
|
|
return (!xd->block[16].eob) & (!xd->block[20].eob);
|
2012-02-22 03:10:18 +01:00
|
|
|
}
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
static int mb_is_skippable_8x8(MACROBLOCKD *xd, int has_2nd_order) {
|
|
|
|
return (vp9_mby_is_skippable_8x8(xd, has_2nd_order) &
|
2012-10-30 05:07:40 +01:00
|
|
|
vp9_mbuv_is_skippable_8x8(xd));
|
2012-09-12 04:36:28 +02:00
|
|
|
}
|
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
static int mb_is_skippable_8x8_4x4uv(MACROBLOCKD *xd, int has_2nd_order) {
|
|
|
|
return (vp9_mby_is_skippable_8x8(xd, has_2nd_order) &
|
2012-10-30 05:07:40 +01:00
|
|
|
vp9_mbuv_is_skippable_4x4(xd));
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
2012-02-29 02:11:12 +01:00
|
|
|
|
2012-10-30 05:07:40 +01:00
|
|
|
int vp9_mby_is_skippable_16x16(MACROBLOCKD *xd) {
|
2012-08-03 02:03:14 +02:00
|
|
|
int skip = 1;
|
2012-08-15 12:00:53 +02:00
|
|
|
skip &= !xd->block[0].eob;
|
2012-08-03 02:03:14 +02:00
|
|
|
return skip;
|
|
|
|
}
|
|
|
|
|
2012-10-30 05:07:40 +01:00
|
|
|
static int mb_is_skippable_16x16(MACROBLOCKD *xd) {
|
|
|
|
return (vp9_mby_is_skippable_16x16(xd) & vp9_mbuv_is_skippable_8x8(xd));
|
2012-08-03 02:03:14 +02:00
|
|
|
}
|
2010-10-07 07:39:16 +02:00
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_tokenize_mb(VP9_COMP *cpi,
|
2012-08-15 12:00:53 +02:00
|
|
|
MACROBLOCKD *xd,
|
2012-08-06 19:51:20 +02:00
|
|
|
TOKENEXTRA **t,
|
|
|
|
int dry_run) {
|
2012-10-15 00:29:56 +02:00
|
|
|
PLANE_TYPE plane_type;
|
2012-11-16 00:14:38 +01:00
|
|
|
int has_2nd_order;
|
2012-07-14 00:21:29 +02:00
|
|
|
int b;
|
2012-09-10 07:42:35 +02:00
|
|
|
int tx_size = xd->mode_info_context->mbmi.txfm_size;
|
2012-10-29 14:44:18 +01:00
|
|
|
int mb_skip_context = vp9_get_pred_context(&cpi->common, xd, PRED_MBSKIP);
|
2012-08-06 19:51:20 +02:00
|
|
|
TOKENEXTRA *t_backup = *t;
|
2012-10-25 18:14:21 +02:00
|
|
|
ENTROPY_CONTEXT * A = (ENTROPY_CONTEXT *) xd->above_context;
|
|
|
|
ENTROPY_CONTEXT * L = (ENTROPY_CONTEXT *) xd->left_context;
|
2011-11-04 19:29:51 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// If the MB is going to be skipped because of a segment level flag
|
|
|
|
// exclude this from the skip count stats used to calculate the
|
|
|
|
// transmitted skip probability;
|
|
|
|
int skip_inc;
|
2012-08-15 12:00:53 +02:00
|
|
|
int segment_id = xd->mode_info_context->mbmi.segment_id;
|
2011-10-28 16:27:23 +02:00
|
|
|
|
2012-10-30 06:15:27 +01:00
|
|
|
if (!vp9_segfeature_active(xd, segment_id, SEG_LVL_EOB) ||
|
|
|
|
(vp9_get_segdata(xd, segment_id, SEG_LVL_EOB) != 0)) {
|
2012-07-14 00:21:29 +02:00
|
|
|
skip_inc = 1;
|
|
|
|
} else
|
|
|
|
skip_inc = 0;
|
2011-10-28 16:27:23 +02:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
has_2nd_order = get_2nd_order_usage(xd);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-09-10 07:42:35 +02:00
|
|
|
switch (tx_size) {
|
2012-08-03 02:03:14 +02:00
|
|
|
case TX_16X16:
|
2012-08-15 18:43:36 +02:00
|
|
|
xd->mode_info_context->mbmi.mb_skip_coeff = mb_is_skippable_16x16(xd);
|
2012-08-03 02:03:14 +02:00
|
|
|
break;
|
|
|
|
case TX_8X8:
|
2012-10-22 20:49:00 +02:00
|
|
|
if (xd->mode_info_context->mbmi.mode == I8X8_PRED ||
|
|
|
|
xd->mode_info_context->mbmi.mode == SPLITMV)
|
2012-11-16 00:14:38 +01:00
|
|
|
xd->mode_info_context->mbmi.mb_skip_coeff =
|
|
|
|
mb_is_skippable_8x8_4x4uv(xd, 0);
|
2012-09-12 04:36:28 +02:00
|
|
|
else
|
2012-11-16 00:14:38 +01:00
|
|
|
xd->mode_info_context->mbmi.mb_skip_coeff =
|
|
|
|
mb_is_skippable_8x8(xd, has_2nd_order);
|
2012-08-03 02:03:14 +02:00
|
|
|
break;
|
2012-09-12 04:36:28 +02:00
|
|
|
|
2012-08-03 02:03:14 +02:00
|
|
|
default:
|
2012-11-16 00:14:38 +01:00
|
|
|
xd->mode_info_context->mbmi.mb_skip_coeff =
|
|
|
|
mb_is_skippable_4x4(xd, has_2nd_order);
|
2012-08-03 02:03:14 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-08-15 12:00:53 +02:00
|
|
|
if (xd->mode_info_context->mbmi.mb_skip_coeff) {
|
2012-08-06 19:51:20 +02:00
|
|
|
if (!dry_run)
|
|
|
|
cpi->skip_true_count[mb_skip_context] += skip_inc;
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!cpi->common.mb_no_coeff_skip) {
|
2012-10-30 20:58:42 +01:00
|
|
|
vp9_stuff_mb(cpi, xd, t, dry_run);
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2012-10-30 20:58:42 +01:00
|
|
|
vp9_fix_contexts(xd);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-08-06 19:51:20 +02:00
|
|
|
if (dry_run)
|
|
|
|
*t = t_backup;
|
2012-07-14 00:21:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-06 19:51:20 +02:00
|
|
|
if (!dry_run)
|
|
|
|
cpi->skip_false_count[mb_skip_context] += skip_inc;
|
2011-04-21 20:38:36 +02:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
if (has_2nd_order) {
|
2012-09-10 07:42:35 +02:00
|
|
|
if (tx_size == TX_8X8) {
|
2012-10-25 18:14:21 +02:00
|
|
|
tokenize_b(cpi, xd, xd->block + 24, t, PLANE_TYPE_Y2,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[24], L + vp9_block2left_8x8[24],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_8X8, dry_run);
|
|
|
|
} else {
|
|
|
|
tokenize_b(cpi, xd, xd->block + 24, t, PLANE_TYPE_Y2,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above[24], L + vp9_block2left[24],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_4X4, dry_run);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-15 00:29:56 +02:00
|
|
|
plane_type = PLANE_TYPE_Y_NO_DC;
|
2012-11-28 01:02:35 +01:00
|
|
|
} else {
|
|
|
|
xd->above_context->y2 = 1;
|
|
|
|
xd->left_context->y2 = 1;
|
2012-10-15 00:29:56 +02:00
|
|
|
plane_type = PLANE_TYPE_Y_WITH_DC;
|
2012-11-28 01:02:35 +01:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-09-10 07:42:35 +02:00
|
|
|
if (tx_size == TX_16X16) {
|
2012-10-25 18:14:21 +02:00
|
|
|
tokenize_b(cpi, xd, xd->block, t, PLANE_TYPE_Y_WITH_DC,
|
|
|
|
A, L, TX_16X16, dry_run);
|
2012-10-22 23:06:52 +02:00
|
|
|
A[1] = A[2] = A[3] = A[0];
|
|
|
|
L[1] = L[2] = L[3] = L[0];
|
2012-08-29 20:25:38 +02:00
|
|
|
|
2012-08-03 02:03:14 +02:00
|
|
|
for (b = 16; b < 24; b += 4) {
|
2012-10-25 18:14:21 +02:00
|
|
|
tokenize_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[b], L + vp9_block2left_8x8[b],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_8X8, dry_run);
|
2012-10-31 01:12:12 +01:00
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-08-03 02:03:14 +02:00
|
|
|
}
|
2012-11-29 02:34:02 +01:00
|
|
|
A[8] = 0;
|
|
|
|
L[8] = 0;
|
2012-10-25 18:14:21 +02:00
|
|
|
} else if (tx_size == TX_8X8) {
|
2012-07-14 00:21:29 +02:00
|
|
|
for (b = 0; b < 16; b += 4) {
|
2012-10-25 18:14:21 +02:00
|
|
|
tokenize_b(cpi, xd, xd->block + b, t, plane_type,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[b], L + vp9_block2left_8x8[b],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_8X8, dry_run);
|
2012-10-31 01:12:12 +01:00
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-10-22 20:49:00 +02:00
|
|
|
if (xd->mode_info_context->mbmi.mode == I8X8_PRED ||
|
|
|
|
xd->mode_info_context->mbmi.mode == SPLITMV) {
|
2012-10-25 18:14:21 +02:00
|
|
|
for (b = 16; b < 24; b++) {
|
|
|
|
tokenize_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above[b], L + vp9_block2left[b],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_4X4, dry_run);
|
|
|
|
}
|
2012-10-05 14:08:20 +02:00
|
|
|
} else {
|
2012-09-12 04:36:28 +02:00
|
|
|
for (b = 16; b < 24; b += 4) {
|
2012-10-25 18:14:21 +02:00
|
|
|
tokenize_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[b], L + vp9_block2left_8x8[b],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_8X8, dry_run);
|
2012-10-31 01:12:12 +01:00
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-09-12 04:36:28 +02:00
|
|
|
}
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
2012-06-25 21:26:09 +02:00
|
|
|
} else {
|
2012-10-25 18:14:21 +02:00
|
|
|
for (b = 0; b < 16; b++) {
|
|
|
|
tokenize_b(cpi, xd, xd->block + b, t, plane_type,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above[b], L + vp9_block2left[b],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_4X4, dry_run);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (b = 16; b < 24; b++) {
|
|
|
|
tokenize_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above[b], L + vp9_block2left[b],
|
2012-10-25 18:14:21 +02:00
|
|
|
TX_4X4, dry_run);
|
|
|
|
}
|
2012-06-25 21:26:09 +02:00
|
|
|
}
|
2012-08-06 19:51:20 +02:00
|
|
|
if (dry_run)
|
|
|
|
*t = t_backup;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2010-08-31 16:49:57 +02:00
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#ifdef ENTROPY_STATS
|
2012-07-14 00:21:29 +02:00
|
|
|
void init_context_counters(void) {
|
|
|
|
FILE *f = fopen("context.bin", "rb");
|
|
|
|
if (!f) {
|
|
|
|
vpx_memset(context_counters, 0, sizeof(context_counters));
|
|
|
|
vpx_memset(context_counters_8x8, 0, sizeof(context_counters_8x8));
|
2012-08-03 02:03:14 +02:00
|
|
|
vpx_memset(context_counters_16x16, 0, sizeof(context_counters_16x16));
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
|
|
|
fread(context_counters, sizeof(context_counters), 1, f);
|
|
|
|
fread(context_counters_8x8, sizeof(context_counters_8x8), 1, f);
|
2012-08-03 02:03:14 +02:00
|
|
|
fread(context_counters_16x16, sizeof(context_counters_16x16), 1, f);
|
2012-07-14 00:21:29 +02:00
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
f = fopen("treeupdate.bin", "rb");
|
|
|
|
if (!f) {
|
|
|
|
vpx_memset(tree_update_hist, 0, sizeof(tree_update_hist));
|
|
|
|
vpx_memset(tree_update_hist_8x8, 0, sizeof(tree_update_hist_8x8));
|
2012-08-03 02:03:14 +02:00
|
|
|
vpx_memset(tree_update_hist_16x16, 0, sizeof(tree_update_hist_16x16));
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
|
|
|
fread(tree_update_hist, sizeof(tree_update_hist), 1, f);
|
|
|
|
fread(tree_update_hist_8x8, sizeof(tree_update_hist_8x8), 1, f);
|
2012-08-03 02:03:14 +02:00
|
|
|
fread(tree_update_hist_16x16, sizeof(tree_update_hist_16x16), 1, f);
|
2012-07-14 00:21:29 +02:00
|
|
|
fclose(f);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
void print_context_counters() {
|
|
|
|
int type, band, pt, t;
|
2012-11-27 22:59:17 +01:00
|
|
|
FILE *f = fopen("vp9_context.c", "w");
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-11-27 22:59:17 +01:00
|
|
|
fprintf(f, "#include \"vp9_entropy.h\"\n");
|
2012-07-14 00:21:29 +02:00
|
|
|
fprintf(f, "\n/* *** GENERATED FILE: DO NOT EDIT *** */\n\n");
|
|
|
|
fprintf(f, "static const unsigned int\n"
|
2012-10-31 22:40:53 +01:00
|
|
|
"vp9_default_coef_counts[BLOCK_TYPES]\n"
|
2012-07-14 00:21:29 +02:00
|
|
|
" [COEF_BANDS]\n"
|
|
|
|
" [PREV_COEF_CONTEXTS]\n"
|
|
|
|
" [MAX_ENTROPY_TOKENS]={\n");
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
# define Comma( X) (X? ",":"")
|
2012-07-14 00:21:29 +02:00
|
|
|
type = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
|
|
|
|
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 x = context_counters [type] [band] [pt] [t];
|
|
|
|
const int y = (int) x;
|
|
|
|
assert(x == (INT64) y); /* no overflow handling yet */
|
|
|
|
fprintf(f, "%s %d", Comma(t), y);
|
|
|
|
} while (++t < MAX_ENTROPY_TOKENS);
|
|
|
|
fprintf(f, "}");
|
|
|
|
} while (++pt < PREV_COEF_CONTEXTS);
|
|
|
|
fprintf(f, "\n }");
|
|
|
|
} while (++band < COEF_BANDS);
|
|
|
|
fprintf(f, "\n }");
|
|
|
|
} while (++type < BLOCK_TYPES);
|
|
|
|
fprintf(f, "\n};\n");
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
fprintf(f, "static const unsigned int\nvp9_default_coef_counts_8x8"
|
2012-07-14 00:21:29 +02:00
|
|
|
"[BLOCK_TYPES_8X8] [COEF_BANDS]"
|
|
|
|
"[PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS] = {");
|
|
|
|
type = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
|
|
|
|
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 x = context_counters_8x8 [type] [band] [pt] [t];
|
|
|
|
const int y = (int) x;
|
2011-02-14 23:18:18 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
assert(x == (INT64) y); /* no overflow handling yet */
|
|
|
|
fprintf(f, "%s %d", Comma(t), y);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
} while (++t < MAX_ENTROPY_TOKENS);
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
fprintf(f, "}");
|
|
|
|
} while (++pt < PREV_COEF_CONTEXTS);
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
fprintf(f, "\n }");
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
} while (++band < COEF_BANDS);
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
fprintf(f, "\n }");
|
|
|
|
} while (++type < BLOCK_TYPES_8X8);
|
2012-08-03 02:03:14 +02:00
|
|
|
fprintf(f, "\n};\n");
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
fprintf(f, "static const unsigned int\nvp9_default_coef_counts_16x16"
|
2012-08-03 02:03:14 +02:00
|
|
|
"[BLOCK_TYPES_16X16] [COEF_BANDS]"
|
|
|
|
"[PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS] = {");
|
|
|
|
type = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
|
|
|
|
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 x = context_counters_16x16 [type] [band] [pt] [t];
|
|
|
|
const int y = (int) x;
|
|
|
|
|
|
|
|
assert(x == (INT64) y); /* no overflow handling yet */
|
|
|
|
fprintf(f, "%s %d", Comma(t), y);
|
|
|
|
|
|
|
|
} while (++t < MAX_ENTROPY_TOKENS);
|
|
|
|
|
|
|
|
fprintf(f, "}");
|
|
|
|
} while (++pt < PREV_COEF_CONTEXTS);
|
|
|
|
|
|
|
|
fprintf(f, "\n }");
|
|
|
|
|
|
|
|
} while (++band < COEF_BANDS);
|
|
|
|
|
|
|
|
fprintf(f, "\n }");
|
|
|
|
} while (++type < BLOCK_TYPES_16X16);
|
2012-07-14 00:21:29 +02:00
|
|
|
fprintf(f, "\n};\n");
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
fprintf(f, "static const vp9_prob\n"
|
2012-10-31 00:25:53 +01:00
|
|
|
"vp9_default_coef_probs[BLOCK_TYPES] [COEF_BANDS] \n"
|
2012-07-14 00:21:29 +02:00
|
|
|
"[PREV_COEF_CONTEXTS] [ENTROPY_NODES] = {");
|
|
|
|
type = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
|
|
|
|
band = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
|
|
|
|
pt = 0;
|
|
|
|
do {
|
|
|
|
unsigned int branch_ct [ENTROPY_NODES] [2];
|
|
|
|
unsigned int coef_counts[MAX_ENTROPY_TOKENS];
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_prob coef_probs[ENTROPY_NODES];
|
2012-07-14 00:21:29 +02:00
|
|
|
for (t = 0; t < MAX_ENTROPY_TOKENS; ++t)
|
|
|
|
coef_counts[t] = context_counters [type] [band] [pt] [t];
|
2012-10-31 00:25:53 +01:00
|
|
|
vp9_tree_probs_from_distribution(
|
2012-10-31 01:12:12 +01:00
|
|
|
MAX_ENTROPY_TOKENS, vp9_coef_encodings, vp9_coef_tree,
|
2012-07-14 00:21:29 +02:00
|
|
|
coef_probs, branch_ct, coef_counts, 256, 1);
|
|
|
|
fprintf(f, "%s\n {", Comma(pt));
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
t = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s %d", Comma(t), coef_probs[t]);
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
} while (++t < ENTROPY_NODES);
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
fprintf(f, "}");
|
|
|
|
} while (++pt < PREV_COEF_CONTEXTS);
|
|
|
|
fprintf(f, "\n }");
|
|
|
|
} while (++band < COEF_BANDS);
|
|
|
|
fprintf(f, "\n }");
|
|
|
|
} while (++type < BLOCK_TYPES);
|
|
|
|
fprintf(f, "\n};\n");
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
fprintf(f, "static const vp9_prob\n"
|
2012-10-31 00:25:53 +01:00
|
|
|
"vp9_default_coef_probs_8x8[BLOCK_TYPES_8X8] [COEF_BANDS]\n"
|
2012-07-14 00:21:29 +02:00
|
|
|
"[PREV_COEF_CONTEXTS] [ENTROPY_NODES] = {");
|
|
|
|
type = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
|
|
|
|
band = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
|
|
|
|
pt = 0;
|
|
|
|
do {
|
|
|
|
unsigned int branch_ct [ENTROPY_NODES] [2];
|
|
|
|
unsigned int coef_counts[MAX_ENTROPY_TOKENS];
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_prob coef_probs[ENTROPY_NODES];
|
2012-07-14 00:21:29 +02:00
|
|
|
for (t = 0; t < MAX_ENTROPY_TOKENS; ++t)
|
|
|
|
coef_counts[t] = context_counters_8x8[type] [band] [pt] [t];
|
2012-10-31 00:25:53 +01:00
|
|
|
vp9_tree_probs_from_distribution(
|
2012-10-31 01:12:12 +01:00
|
|
|
MAX_ENTROPY_TOKENS, vp9_coef_encodings, vp9_coef_tree,
|
2012-07-14 00:21:29 +02:00
|
|
|
coef_probs, branch_ct, coef_counts, 256, 1);
|
|
|
|
fprintf(f, "%s\n {", Comma(pt));
|
2012-03-21 23:22:21 +01:00
|
|
|
|
2012-08-03 02:03:14 +02:00
|
|
|
t = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
do {
|
|
|
|
fprintf(f, "%s %d", 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 (++type < BLOCK_TYPES_8X8);
|
|
|
|
fprintf(f, "\n};\n");
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
fprintf(f, "static const vp9_prob\n"
|
2012-10-31 00:25:53 +01:00
|
|
|
"vp9_default_coef_probs_16x16[BLOCK_TYPES_16X16] [COEF_BANDS]\n"
|
2012-08-03 02:03:14 +02:00
|
|
|
"[PREV_COEF_CONTEXTS] [ENTROPY_NODES] = {");
|
|
|
|
type = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* block Type %d */", Comma(type), type);
|
|
|
|
band = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band);
|
|
|
|
pt = 0;
|
|
|
|
do {
|
|
|
|
unsigned int branch_ct [ENTROPY_NODES] [2];
|
|
|
|
unsigned int coef_counts[MAX_ENTROPY_TOKENS];
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_prob coef_probs[ENTROPY_NODES];
|
2012-08-03 02:03:14 +02:00
|
|
|
for (t = 0; t < MAX_ENTROPY_TOKENS; ++t)
|
|
|
|
coef_counts[t] = context_counters_16x16[type] [band] [pt] [t];
|
2012-10-31 00:25:53 +01:00
|
|
|
vp9_tree_probs_from_distribution(
|
2012-10-31 01:12:12 +01:00
|
|
|
MAX_ENTROPY_TOKENS, vp9_coef_encodings, vp9_coef_tree,
|
2012-08-03 02:03:14 +02:00
|
|
|
coef_probs, branch_ct, coef_counts, 256, 1);
|
|
|
|
fprintf(f, "%s\n {", Comma(pt));
|
|
|
|
|
|
|
|
t = 0;
|
|
|
|
do {
|
|
|
|
fprintf(f, "%s %d", 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 (++type < BLOCK_TYPES_16X16);
|
|
|
|
fprintf(f, "\n};\n");
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
f = fopen("context.bin", "wb");
|
|
|
|
fwrite(context_counters, sizeof(context_counters), 1, f);
|
|
|
|
fwrite(context_counters_8x8, sizeof(context_counters_8x8), 1, f);
|
2012-08-03 02:03:14 +02:00
|
|
|
fwrite(context_counters_16x16, sizeof(context_counters_16x16), 1, f);
|
2012-07-14 00:21:29 +02:00
|
|
|
fclose(f);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_tokenize_initialize() {
|
2012-07-14 00:21:29 +02:00
|
|
|
fill_value_tokens();
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
static __inline void stuff_b(VP9_COMP *cpi,
|
2012-10-25 01:59:00 +02:00
|
|
|
MACROBLOCKD *xd,
|
|
|
|
const BLOCKD * const b,
|
|
|
|
TOKENEXTRA **tp,
|
|
|
|
PLANE_TYPE type,
|
|
|
|
ENTROPY_CONTEXT *a,
|
|
|
|
ENTROPY_CONTEXT *l,
|
|
|
|
TX_SIZE tx_size,
|
|
|
|
int dry_run) {
|
|
|
|
const int *bands;
|
|
|
|
unsigned int (*counts)[COEF_BANDS][PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS];
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_prob (*probs)[COEF_BANDS][PREV_COEF_CONTEXTS][ENTROPY_NODES];
|
2012-10-25 01:59:00 +02:00
|
|
|
int pt, band;
|
|
|
|
TOKENEXTRA *t = *tp;
|
|
|
|
const TX_TYPE tx_type = (type == PLANE_TYPE_Y_WITH_DC) ?
|
|
|
|
get_tx_type(xd, b) : DCT_DCT;
|
2012-10-31 22:40:53 +01:00
|
|
|
VP9_COMBINEENTROPYCONTEXTS(pt, *a, *l);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-10-25 01:59:00 +02:00
|
|
|
switch (tx_size) {
|
|
|
|
default:
|
|
|
|
case TX_4X4:
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands;
|
2012-10-25 01:59:00 +02:00
|
|
|
if (tx_type != DCT_DCT) {
|
|
|
|
counts = cpi->hybrid_coef_counts;
|
|
|
|
probs = cpi->common.fc.hybrid_coef_probs;
|
|
|
|
} else {
|
|
|
|
counts = cpi->coef_counts;
|
|
|
|
probs = cpi->common.fc.coef_probs;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TX_8X8:
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands_8x8;
|
2012-10-25 01:59:00 +02:00
|
|
|
if (tx_type != DCT_DCT) {
|
|
|
|
counts = cpi->hybrid_coef_counts_8x8;
|
|
|
|
probs = cpi->common.fc.hybrid_coef_probs_8x8;
|
|
|
|
} else {
|
|
|
|
counts = cpi->coef_counts_8x8;
|
|
|
|
probs = cpi->common.fc.coef_probs_8x8;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TX_16X16:
|
2012-10-31 01:12:12 +01:00
|
|
|
bands = vp9_coef_bands_16x16;
|
2012-10-25 01:59:00 +02:00
|
|
|
if (tx_type != DCT_DCT) {
|
|
|
|
counts = cpi->hybrid_coef_counts_16x16;
|
|
|
|
probs = cpi->common.fc.hybrid_coef_probs_16x16;
|
|
|
|
} else {
|
|
|
|
counts = cpi->coef_counts_16x16;
|
|
|
|
probs = cpi->common.fc.coef_probs_16x16;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
band = bands[(type == PLANE_TYPE_Y_NO_DC) ? 1 : 0];
|
2012-07-14 00:21:29 +02:00
|
|
|
t->Token = DCT_EOB_TOKEN;
|
2012-10-25 01:59:00 +02:00
|
|
|
t->context_tree = probs[type][band][pt];
|
2012-07-14 00:21:29 +02:00
|
|
|
t->skip_eob_node = 0;
|
|
|
|
++t;
|
|
|
|
*tp = t;
|
2012-10-25 01:59:00 +02:00
|
|
|
*a = *l = 0;
|
2012-09-10 07:42:35 +02:00
|
|
|
if (!dry_run) {
|
2012-10-25 01:59:00 +02:00
|
|
|
++counts[type][band][pt][DCT_EOB_TOKEN];
|
2012-09-10 07:42:35 +02:00
|
|
|
}
|
2011-02-14 23:18:18 +01:00
|
|
|
}
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
static void stuff_mb_8x8(VP9_COMP *cpi, MACROBLOCKD *xd,
|
|
|
|
TOKENEXTRA **t, int dry_run) {
|
2012-08-15 12:00:53 +02:00
|
|
|
ENTROPY_CONTEXT *A = (ENTROPY_CONTEXT *)xd->above_context;
|
|
|
|
ENTROPY_CONTEXT *L = (ENTROPY_CONTEXT *)xd->left_context;
|
2012-10-15 19:52:13 +02:00
|
|
|
PLANE_TYPE plane_type;
|
2012-07-14 00:21:29 +02:00
|
|
|
int b;
|
2012-11-16 00:14:38 +01:00
|
|
|
int has_2nd_order = get_2nd_order_usage(xd);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
if (has_2nd_order) {
|
2012-10-25 01:59:00 +02:00
|
|
|
stuff_b(cpi, xd, xd->block + 24, t, PLANE_TYPE_Y2,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[24], L + vp9_block2left_8x8[24],
|
2012-10-25 01:59:00 +02:00
|
|
|
TX_8X8, dry_run);
|
2012-10-15 19:52:13 +02:00
|
|
|
plane_type = PLANE_TYPE_Y_NO_DC;
|
|
|
|
} else {
|
2012-11-28 01:02:35 +01:00
|
|
|
xd->above_context->y2 = 1;
|
|
|
|
xd->left_context->y2 = 1;
|
2012-10-15 19:52:13 +02:00
|
|
|
plane_type = PLANE_TYPE_Y_WITH_DC;
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
for (b = 0; b < 16; b += 4) {
|
2012-10-31 01:12:12 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, plane_type, A + vp9_block2above_8x8[b],
|
|
|
|
L + vp9_block2left_8x8[b], TX_8X8, dry_run);
|
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (b = 16; b < 24; b += 4) {
|
2012-10-25 01:59:00 +02:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[b], L + vp9_block2left_8x8[b],
|
2012-10-25 01:59:00 +02:00
|
|
|
TX_8X8, dry_run);
|
2012-10-31 01:12:12 +01:00
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-08-03 02:03:14 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
static void stuff_mb_16x16(VP9_COMP *cpi, MACROBLOCKD *xd,
|
|
|
|
TOKENEXTRA **t, int dry_run) {
|
2012-08-15 12:00:53 +02:00
|
|
|
ENTROPY_CONTEXT * A = (ENTROPY_CONTEXT *)xd->above_context;
|
|
|
|
ENTROPY_CONTEXT * L = (ENTROPY_CONTEXT *)xd->left_context;
|
2012-10-25 01:59:00 +02:00
|
|
|
int b;
|
2012-08-03 02:03:14 +02:00
|
|
|
|
2012-10-25 01:59:00 +02:00
|
|
|
stuff_b(cpi, xd, xd->block, t, PLANE_TYPE_Y_WITH_DC, A, L, TX_16X16, dry_run);
|
2012-10-22 23:06:52 +02:00
|
|
|
A[1] = A[2] = A[3] = A[0];
|
|
|
|
L[1] = L[2] = L[3] = L[0];
|
2012-08-03 02:03:14 +02:00
|
|
|
for (b = 16; b < 24; b += 4) {
|
2012-10-31 01:12:12 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV, A + vp9_block2above[b],
|
|
|
|
L + vp9_block2above_8x8[b], TX_8X8, dry_run);
|
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-08-03 02:03:14 +02:00
|
|
|
}
|
|
|
|
vpx_memset(&A[8], 0, sizeof(A[8]));
|
|
|
|
vpx_memset(&L[8], 0, sizeof(L[8]));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
static void stuff_mb_4x4(VP9_COMP *cpi, MACROBLOCKD *xd,
|
|
|
|
TOKENEXTRA **t, int dry_run) {
|
2012-08-15 12:00:53 +02:00
|
|
|
ENTROPY_CONTEXT *A = (ENTROPY_CONTEXT *)xd->above_context;
|
|
|
|
ENTROPY_CONTEXT *L = (ENTROPY_CONTEXT *)xd->left_context;
|
2012-07-14 00:21:29 +02:00
|
|
|
int b;
|
2012-10-15 19:52:13 +02:00
|
|
|
PLANE_TYPE plane_type;
|
2012-11-16 00:14:38 +01:00
|
|
|
int has_2nd_order = (xd->mode_info_context->mbmi.mode != B_PRED &&
|
|
|
|
xd->mode_info_context->mbmi.mode != I8X8_PRED &&
|
|
|
|
xd->mode_info_context->mbmi.mode != SPLITMV);
|
|
|
|
if (has_2nd_order && get_tx_type(xd, &xd->block[0]) != DCT_DCT)
|
|
|
|
has_2nd_order = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
if (has_2nd_order) {
|
2012-10-31 01:12:12 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + 24, t, PLANE_TYPE_Y2, A + vp9_block2above[24],
|
|
|
|
L + vp9_block2left[24], TX_4X4, dry_run);
|
2012-10-15 19:52:13 +02:00
|
|
|
plane_type = PLANE_TYPE_Y_NO_DC;
|
|
|
|
} else {
|
2012-11-28 01:02:35 +01:00
|
|
|
xd->above_context->y2 = 1;
|
|
|
|
xd->left_context->y2 = 1;
|
2012-10-15 19:52:13 +02:00
|
|
|
plane_type = PLANE_TYPE_Y_WITH_DC;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (b = 0; b < 16; b++)
|
2012-10-31 01:12:12 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, plane_type, A + vp9_block2above[b],
|
|
|
|
L + vp9_block2left[b], TX_4X4, dry_run);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (b = 16; b < 24; b++)
|
2012-10-31 01:12:12 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV, A + vp9_block2above[b],
|
|
|
|
L + vp9_block2left[b], TX_4X4, dry_run);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-09-12 04:36:28 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
static void stuff_mb_8x8_4x4uv(VP9_COMP *cpi, MACROBLOCKD *xd,
|
|
|
|
TOKENEXTRA **t, int dry_run) {
|
2012-09-12 04:36:28 +02:00
|
|
|
ENTROPY_CONTEXT *A = (ENTROPY_CONTEXT *)xd->above_context;
|
|
|
|
ENTROPY_CONTEXT *L = (ENTROPY_CONTEXT *)xd->left_context;
|
2012-11-16 00:14:38 +01:00
|
|
|
PLANE_TYPE plane_type;
|
2012-09-12 04:36:28 +02:00
|
|
|
int b;
|
|
|
|
|
2012-11-16 00:14:38 +01:00
|
|
|
int has_2nd_order = get_2nd_order_usage(xd);
|
|
|
|
if (has_2nd_order) {
|
|
|
|
stuff_b(cpi, xd, xd->block + 24, t, PLANE_TYPE_Y2,
|
|
|
|
A + vp9_block2above_8x8[24], L + vp9_block2left_8x8[24],
|
|
|
|
TX_8X8, dry_run);
|
|
|
|
plane_type = PLANE_TYPE_Y_NO_DC;
|
|
|
|
} else {
|
|
|
|
plane_type = PLANE_TYPE_Y_WITH_DC;
|
|
|
|
}
|
|
|
|
|
2012-09-12 04:36:28 +02:00
|
|
|
for (b = 0; b < 16; b += 4) {
|
2012-11-16 00:14:38 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, plane_type,
|
2012-10-31 01:12:12 +01:00
|
|
|
A + vp9_block2above_8x8[b], L + vp9_block2left_8x8[b],
|
2012-10-25 01:59:00 +02:00
|
|
|
TX_8X8, dry_run);
|
2012-10-31 01:12:12 +01:00
|
|
|
A[vp9_block2above_8x8[b] + 1] = A[vp9_block2above_8x8[b]];
|
|
|
|
L[vp9_block2left_8x8[b] + 1] = L[vp9_block2left_8x8[b]];
|
2012-09-12 04:36:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (b = 16; b < 24; b++)
|
2012-10-31 01:12:12 +01:00
|
|
|
stuff_b(cpi, xd, xd->block + b, t, PLANE_TYPE_UV, A + vp9_block2above[b],
|
|
|
|
L + vp9_block2left[b], TX_4X4, dry_run);
|
2012-11-28 01:02:35 +01:00
|
|
|
xd->above_context->y2 = 1;
|
|
|
|
xd->left_context->y2 = 1;
|
2012-09-12 04:36:28 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_stuff_mb(VP9_COMP *cpi, MACROBLOCKD *xd, TOKENEXTRA **t, int dry_run) {
|
2012-10-15 19:52:13 +02:00
|
|
|
TX_SIZE tx_size = xd->mode_info_context->mbmi.txfm_size;
|
2012-10-25 01:59:00 +02:00
|
|
|
TOKENEXTRA * const t_backup = *t;
|
2012-10-15 19:52:13 +02:00
|
|
|
|
|
|
|
if (tx_size == TX_16X16) {
|
2012-10-31 22:40:53 +01:00
|
|
|
stuff_mb_16x16(cpi, xd, t, dry_run);
|
2012-10-15 19:52:13 +02:00
|
|
|
} else if (tx_size == TX_8X8) {
|
2012-10-22 20:49:00 +02:00
|
|
|
if (xd->mode_info_context->mbmi.mode == I8X8_PRED ||
|
|
|
|
xd->mode_info_context->mbmi.mode == SPLITMV) {
|
2012-10-31 22:40:53 +01:00
|
|
|
stuff_mb_8x8_4x4uv(cpi, xd, t, dry_run);
|
2012-10-15 19:52:13 +02:00
|
|
|
} else {
|
2012-10-31 22:40:53 +01:00
|
|
|
stuff_mb_8x8(cpi, xd, t, dry_run);
|
2012-10-15 19:52:13 +02:00
|
|
|
}
|
|
|
|
} else {
|
2012-10-31 22:40:53 +01:00
|
|
|
stuff_mb_4x4(cpi, xd, t, dry_run);
|
2012-10-15 19:52:13 +02:00
|
|
|
}
|
2012-10-25 01:59:00 +02:00
|
|
|
|
|
|
|
if (dry_run) {
|
|
|
|
*t = t_backup;
|
|
|
|
}
|
2012-10-15 19:52:13 +02:00
|
|
|
}
|
|
|
|
|
2012-10-30 20:58:42 +01:00
|
|
|
void vp9_fix_contexts(MACROBLOCKD *xd) {
|
2012-11-16 00:14:38 +01:00
|
|
|
/* Clear entropy contexts for blocks */
|
2012-08-15 12:00:53 +02:00
|
|
|
if ((xd->mode_info_context->mbmi.mode != B_PRED
|
2012-11-16 00:14:38 +01:00
|
|
|
&& xd->mode_info_context->mbmi.mode != I8X8_PRED
|
|
|
|
&& xd->mode_info_context->mbmi.mode != SPLITMV)
|
2012-08-15 12:00:53 +02:00
|
|
|
|| xd->mode_info_context->mbmi.txfm_size == TX_16X16
|
2012-08-03 02:03:14 +02:00
|
|
|
) {
|
2012-08-15 12:00:53 +02:00
|
|
|
vpx_memset(xd->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES));
|
|
|
|
vpx_memset(xd->left_context, 0, sizeof(ENTROPY_CONTEXT_PLANES));
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2012-08-15 12:00:53 +02:00
|
|
|
vpx_memset(xd->above_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) - 1);
|
|
|
|
vpx_memset(xd->left_context, 0, sizeof(ENTROPY_CONTEXT_PLANES) - 1);
|
2012-11-28 01:02:35 +01:00
|
|
|
xd->above_context->y2 = 1;
|
|
|
|
xd->left_context->y2 = 1;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|