Home
last modified time | relevance | path

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

/external/libvpx/vp8/encoder/
Dbitstream.c820 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features()
821 vp8_write(w, 0, x->mb_segment_tree_probs[1]); in write_mb_features()
824 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features()
825 vp8_write(w, 1, x->mb_segment_tree_probs[1]); in write_mb_features()
828 vp8_write(w, 1, x->mb_segment_tree_probs[0]); in write_mb_features()
829 vp8_write(w, 0, x->mb_segment_tree_probs[2]); in write_mb_features()
832 vp8_write(w, 1, x->mb_segment_tree_probs[0]); in write_mb_features()
833 vp8_write(w, 1, x->mb_segment_tree_probs[2]); in write_mb_features()
838 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features()
839 vp8_write(w, 0, x->mb_segment_tree_probs[1]); in write_mb_features()
[all …]
Dencodeframe.c905 vpx_memset(xd->mb_segment_tree_probs, 255 , sizeof(xd->mb_segment_tree_probs)); in vp8_encode_frame()
911 … xd->mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
917 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
923 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
928 if (xd->mb_segment_tree_probs[i] == 0) in vp8_encode_frame()
929 xd->mb_segment_tree_probs[i] = 1; in vp8_encode_frame()
Donyx_if.c248 … vpx_memset(cpi->mb.e_mbd.mb_segment_tree_probs, 255, sizeof(cpi->mb.e_mbd.mb_segment_tree_probs)); in setup_features()
/external/libvpx/vp8/decoder/
Ddecodemv.c58 if (vp8_read(r, x->mb_segment_tree_probs[0])) in vp8_read_mb_features()
59 mi->segment_id = (unsigned char)(2 + vp8_read(r, x->mb_segment_tree_probs[2])); in vp8_read_mb_features()
61 mi->segment_id = (unsigned char)(vp8_read(r, x->mb_segment_tree_probs[1])); in vp8_read_mb_features()
Ddecodframe.c698 vpx_memset(xd->mb_segment_tree_probs, 255, sizeof(xd->mb_segment_tree_probs)); in vp8_decode_frame()
705 xd->mb_segment_tree_probs[i] = (vp8_prob)vp8_read_literal(bc, 8); in vp8_decode_frame()
/external/libvpx/vp8/common/
Dblockd.h254 …vp8_prob mb_segment_tree_probs[MB_FEATURE_TREE_PROBS]; /* Probability Tree used to code Se… member