Home
last modified time | relevance | path

Searched refs:segcounts (Results 1 – 1 of 1) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_segmentation.c50 static void calc_segtree_probs(int *segcounts, vpx_prob *segment_tree_probs) { in calc_segtree_probs() argument
52 const int c01 = segcounts[0] + segcounts[1]; in calc_segtree_probs()
53 const int c23 = segcounts[2] + segcounts[3]; in calc_segtree_probs()
54 const int c45 = segcounts[4] + segcounts[5]; in calc_segtree_probs()
55 const int c67 = segcounts[6] + segcounts[7]; in calc_segtree_probs()
60 segment_tree_probs[3] = get_binary_prob(segcounts[0], segcounts[1]); in calc_segtree_probs()
61 segment_tree_probs[4] = get_binary_prob(segcounts[2], segcounts[3]); in calc_segtree_probs()
62 segment_tree_probs[5] = get_binary_prob(segcounts[4], segcounts[5]); in calc_segtree_probs()
63 segment_tree_probs[6] = get_binary_prob(segcounts[6], segcounts[7]); in calc_segtree_probs()
67 static int cost_segmap(int *segcounts, vpx_prob *probs) { in cost_segmap() argument
[all …]