Searched refs:mb_segment_tree_probs (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | bitstream.c | 471 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features() 472 vp8_write(w, 0, x->mb_segment_tree_probs[1]); in write_mb_features() 475 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features() 476 vp8_write(w, 1, x->mb_segment_tree_probs[1]); in write_mb_features() 479 vp8_write(w, 1, x->mb_segment_tree_probs[0]); in write_mb_features() 480 vp8_write(w, 0, x->mb_segment_tree_probs[2]); in write_mb_features() 483 vp8_write(w, 1, x->mb_segment_tree_probs[0]); in write_mb_features() 484 vp8_write(w, 1, x->mb_segment_tree_probs[2]); in write_mb_features() 489 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features() 490 vp8_write(w, 0, x->mb_segment_tree_probs[1]); in write_mb_features() [all …]
|
D | encodeframe.c | 979 memset(xd->mb_segment_tree_probs, 255 , sizeof(xd->mb_segment_tree_probs)); in vp8_encode_frame() 985 … xd->mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame() 991 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame() 997 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame() 1002 if (xd->mb_segment_tree_probs[i] == 0) in vp8_encode_frame() 1003 xd->mb_segment_tree_probs[i] = 1; in vp8_encode_frame()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | decodemv.c | 582 if (vp8_read(r, x->mb_segment_tree_probs[0])) in read_mb_features() 584 (unsigned char)(2 + vp8_read(r, x->mb_segment_tree_probs[2])); in read_mb_features() 587 (unsigned char)(vp8_read(r, x->mb_segment_tree_probs[1])); in read_mb_features()
|
D | decodeframe.c | 1133 memset(xd->mb_segment_tree_probs, 255, sizeof(xd->mb_segment_tree_probs)); in vp8_decode_frame() 1140 xd->mb_segment_tree_probs[i] = (vp8_prob)vp8_read_literal(bc, 8); in vp8_decode_frame()
|
/external/libvpx/libvpx/vp8/common/ |
D | blockd.h | 264 …vp8_prob mb_segment_tree_probs[MB_FEATURE_TREE_PROBS]; /* Probability Tree used to code Se… member
|