Searched refs:segcounts (Results 1 – 1 of 1) sorted by relevance
63 static void calc_segtree_probs(int *segcounts, vpx_prob *segment_tree_probs) { in calc_segtree_probs() argument65 const int c01 = segcounts[0] + segcounts[1]; in calc_segtree_probs()66 const int c23 = segcounts[2] + segcounts[3]; in calc_segtree_probs()67 const int c45 = segcounts[4] + segcounts[5]; in calc_segtree_probs()68 const int c67 = segcounts[6] + segcounts[7]; in calc_segtree_probs()73 segment_tree_probs[3] = get_binary_prob(segcounts[0], segcounts[1]); in calc_segtree_probs()74 segment_tree_probs[4] = get_binary_prob(segcounts[2], segcounts[3]); in calc_segtree_probs()75 segment_tree_probs[5] = get_binary_prob(segcounts[4], segcounts[5]); in calc_segtree_probs()76 segment_tree_probs[6] = get_binary_prob(segcounts[6], segcounts[7]); in calc_segtree_probs()80 static int cost_segmap(int *segcounts, vpx_prob *probs) { in cost_segmap() argument[all …]