HomeSort by relevance Sort by last modified time
    Searched refs:branch_ct (Results 1 - 8 of 8) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_treecoder.c 45 unsigned int branch_ct[][2],
53 left = convert_distribution(tree[i], tree, probs, branch_ct,
59 right = convert_distribution(tree[i + 1], tree, probs, branch_ct,
63 branch_ct[i>>1][0] = left;
64 branch_ct[i>>1][1] = right;
71 unsigned int branch_ct [ /* n-1 */ ] [2],
74 convert_distribution(0, tree, probs, branch_ct, num_events, tok0_offset);
vp9_entropy.c 623 unsigned int branch_ct[UNCONSTRAINED_NODES][2]; local
633 branch_ct, coef_counts[i][j][k][l],
635 branch_ct[0][1] = eob_branch_count[i][j][k][l] - branch_ct[0][0];
636 coef_probs[0] = get_binary_prob(branch_ct[0][0], branch_ct[0][1]);
640 branch_ct[t], count_sat, update_factor);
vp9_treecoder.h 52 unsigned int branch_ct[ /* n - 1 */ ][2],
vp9_entropymode.c 373 unsigned int branch_ct[MAX_PROBS][2]; local
377 vp9_tree_probs_from_distribution(tree, probs, branch_ct, cnt, tok0_offset);
379 dst_probs[t] = update_ct(pre_probs[t], probs[t], branch_ct[t]);
  /external/libvpx/libvpx/vp8/common/
treecoder.c 60 unsigned int branch_ct [ /* n-1 */ ] [2],
73 branch_ct[t][0] = branch_ct[t][1] = 0;
95 branch_ct [j] [b] += ct;
114 unsigned int branch_ct [ /* n-1 */ ] [2],
123 branch_counts(n, tok, tree, branch_ct, num_events);
127 const unsigned int *const c = branch_ct[t];
treecoder.h 71 unsigned int branch_ct [ /* n-1 */ ] [2],
84 unsigned int branch_ct [ /* n-1 */ ] [2],
  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 318 unsigned int branch_ct[ENTROPY_NODES][2]; local
327 branch_ct, coef_counts, 0);
328 branch_ct[0][1] = coef_counts[MAX_ENTROPY_TOKENS] - branch_ct[0][0];
329 coef_probs[0] = get_binary_prob(branch_ct[0][0], branch_ct[0][1]);
vp9_bitstream.c 242 unsigned int branch_ct[SWITCHABLE_FILTERS + 1] local
249 new_prob[j], branch_ct[j],
255 MODE_UPDATE_PROB, branch_ct[j][i]);
268 unsigned int branch_ct[INTER_MODES - 1][2]; local
272 new_prob, branch_ct,
277 MODE_UPDATE_PROB, branch_ct[j]);
    [all...]

Completed in 36 milliseconds