Searched refs:segcounts (Results 1 – 1 of 1) sorted by relevance
104 static void calc_segtree_probs(int *segcounts, vpx_prob *segment_tree_probs) { in calc_segtree_probs() argument106 const int c01 = segcounts[0] + segcounts[1]; in calc_segtree_probs()107 const int c23 = segcounts[2] + segcounts[3]; in calc_segtree_probs()108 const int c45 = segcounts[4] + segcounts[5]; in calc_segtree_probs()109 const int c67 = segcounts[6] + segcounts[7]; in calc_segtree_probs()114 segment_tree_probs[3] = get_binary_prob(segcounts[0], segcounts[1]); in calc_segtree_probs()115 segment_tree_probs[4] = get_binary_prob(segcounts[2], segcounts[3]); in calc_segtree_probs()116 segment_tree_probs[5] = get_binary_prob(segcounts[4], segcounts[5]); in calc_segtree_probs()117 segment_tree_probs[6] = get_binary_prob(segcounts[6], segcounts[7]); in calc_segtree_probs()121 static int cost_segmap(int *segcounts, vpx_prob *probs) { in cost_segmap() argument[all …]