Home | History | Annotate | Download | only in encoder

Lines Matching refs:tree

6  *  tree. An additional intellectual property rights grant can be found
8 * be found in the AUTHORS file in the root of the source tree.
37 static void cost(int *costs, vp9_tree tree, const vp9_prob *probs,
44 const vp9_tree_index ii = tree[i + b];
49 cost(costs, tree, probs, ii, cc);
53 void vp9_cost_tokens(int *costs, const vp9_prob *probs, vp9_tree tree) {
54 cost(costs, tree, probs, 0, 0);
57 void vp9_cost_tokens_skip(int *costs, const vp9_prob *probs, vp9_tree tree) {
58 assert(tree[0] <= 0 && tree[1] > 0);
60 costs[-tree[0]] = vp9_cost_bit(probs[0], 0);
61 cost(costs, tree, probs, 2, 0);