Searched refs:get_binary_prob (Results 1 – 5 of 5) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_segmentation.c | 73 segment_tree_probs[0] = get_binary_prob(c01 + c23, c45 + c67); in calc_segtree_probs() 74 segment_tree_probs[1] = get_binary_prob(c01, c23); in calc_segtree_probs() 75 segment_tree_probs[2] = get_binary_prob(c45, c67); in calc_segtree_probs() 76 segment_tree_probs[3] = get_binary_prob(segcounts[0], segcounts[1]); in calc_segtree_probs() 77 segment_tree_probs[4] = get_binary_prob(segcounts[2], segcounts[3]); in calc_segtree_probs() 78 segment_tree_probs[5] = get_binary_prob(segcounts[4], segcounts[5]); in calc_segtree_probs() 79 segment_tree_probs[6] = get_binary_prob(segcounts[6], segcounts[7]); in calc_segtree_probs() 275 t_nopred_prob[i] = get_binary_prob(count0, count1); in vp9_choose_segmap_coding_method()
|
D | vp9_subexp.c | 182 vp9_prob newp = get_binary_prob(ct[0], ct[1]); in vp9_cond_prob_diff_update()
|
D | vp9_encodemv.c | 138 const vp9_prob new_p = get_binary_prob(ct[0], ct[1]) | 1; in update_mv()
|
D | vp9_bitstream.c | 505 coef_probs[i][j][k][l][m] = get_binary_prob( in build_tree_distribution()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_prob.h | 63 static INLINE vp9_prob get_binary_prob(int n0, int n1) { in get_binary_prob() function 76 const vp9_prob prob = get_binary_prob(ct[0], ct[1]); in merge_probs()
|