Index: source/libvpx/vp9/encoder/vp9_tokenize.c |
=================================================================== |
--- source/libvpx/vp9/encoder/vp9_tokenize.c (revision 293081) |
+++ source/libvpx/vp9/encoder/vp9_tokenize.c (working copy) |
@@ -311,9 +311,9 @@ |
const scan_order *so; |
const int ref = is_inter_block(mbmi); |
unsigned int (*const counts)[COEFF_CONTEXTS][ENTROPY_TOKENS] = |
- cpi->coef_counts[tx_size][type][ref]; |
+ cpi->frame_counts->coef_counts[tx_size][type][ref]; |
vp9_prob (*const coef_probs)[COEFF_CONTEXTS][UNCONSTRAINED_NODES] = |
- cpi->common.fc.coef_probs[tx_size][type][ref]; |
+ cpi->common.fc->coef_probs[tx_size][type][ref]; |
unsigned int (*const eob_branch)[COEFF_CONTEXTS] = |
cpi->common.counts.eob_branch[tx_size][type][ref]; |
const uint8_t *const band = get_band_translate(tx_size); |