Searched refs:segcounts (Results 1 – 1 of 1) sorted by relevance
56 static void calc_segtree_probs(int *segcounts, vp9_prob *segment_tree_probs) { in calc_segtree_probs() argument58 const int c01 = segcounts[0] + segcounts[1]; in calc_segtree_probs()59 const int c23 = segcounts[2] + segcounts[3]; in calc_segtree_probs()60 const int c45 = segcounts[4] + segcounts[5]; in calc_segtree_probs()61 const int c67 = segcounts[6] + segcounts[7]; in calc_segtree_probs()66 segment_tree_probs[3] = get_binary_prob(segcounts[0], segcounts[1]); in calc_segtree_probs()67 segment_tree_probs[4] = get_binary_prob(segcounts[2], segcounts[3]); in calc_segtree_probs()68 segment_tree_probs[5] = get_binary_prob(segcounts[4], segcounts[5]); in calc_segtree_probs()69 segment_tree_probs[6] = get_binary_prob(segcounts[6], segcounts[7]); in calc_segtree_probs()73 static int cost_segmap(int *segcounts, vp9_prob *probs) { in cost_segmap() argument[all …]