Home
last modified time | relevance | path

Searched refs:context_tree (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dtokenize.c127 t->context_tree = cpi->common.fc.coef_probs[1][0][pt]; in tokenize2nd_order_b()
142 t->context_tree = cpi->common.fc.coef_probs[1][0][pt]; in tokenize2nd_order_b()
158 t->context_tree = cpi->common.fc.coef_probs[1][band][pt]; in tokenize2nd_order_b()
170 t->context_tree = cpi->common.fc.coef_probs[1][band][pt]; in tokenize2nd_order_b()
217 t->context_tree = cpi->common.fc.coef_probs[type][c][pt]; in tokenize1st_order_b()
233 t->context_tree = cpi->common.fc.coef_probs[type][c][pt]; in tokenize1st_order_b()
250 t->context_tree = cpi->common.fc.coef_probs[type][band][pt]; in tokenize1st_order_b()
261 t->context_tree = cpi->common.fc.coef_probs[type][band][pt]; in tokenize1st_order_b()
286 t->context_tree = cpi->common.fc.coef_probs[2][0][pt]; in tokenize1st_order_b()
302 t->context_tree = cpi->common.fc.coef_probs[2][0][pt]; in tokenize1st_order_b()
[all …]
Dtokenize.h29 const vp8_prob *context_tree; member
Dbitstream.c140 const unsigned char *pp = p->context_tree; in vp8_pack_tokens()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_tokenize.c329 static INLINE void add_token(TOKENEXTRA **t, const vpx_prob *context_tree, in add_token() argument
332 (*t)->context_tree = context_tree; in add_token()
340 const vpx_prob *context_tree, in add_token_no_extra() argument
342 (*t)->context_tree = context_tree; in add_token_no_extra()
Dvp9_bitstream.c142 vpx_write(w, 0, p->context_tree[0]); in pack_mb_tokens()
145 vpx_write(w, 1, p->context_tree[0]); in pack_mb_tokens()
147 vpx_write(w, 0, p->context_tree[1]); in pack_mb_tokens()
157 const vpx_prob *const context_tree = p->context_tree; in pack_mb_tokens() local
161 vpx_write(w, 1, context_tree[1]); in pack_mb_tokens()
163 vpx_write(w, 0, context_tree[2]); in pack_mb_tokens()
170 vpx_write(w, 1, context_tree[2]); in pack_mb_tokens()
172 vp9_pareto8_full[context_tree[PIVOT_NODE] - 1], v, in pack_mb_tokens()
Dvp9_tokenize.h37 const vpx_prob *context_tree; member