Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dbitstream.c362 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features()
363 vp8_write(w, 0, x->mb_segment_tree_probs[1]); in write_mb_features()
366 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features()
367 vp8_write(w, 1, x->mb_segment_tree_probs[1]); in write_mb_features()
370 vp8_write(w, 1, x->mb_segment_tree_probs[0]); in write_mb_features()
371 vp8_write(w, 0, x->mb_segment_tree_probs[2]); in write_mb_features()
374 vp8_write(w, 1, x->mb_segment_tree_probs[0]); in write_mb_features()
375 vp8_write(w, 1, x->mb_segment_tree_probs[2]); in write_mb_features()
380 vp8_write(w, 0, x->mb_segment_tree_probs[0]); in write_mb_features()
381 vp8_write(w, 0, x->mb_segment_tree_probs[1]); in write_mb_features()
[all …]
Dencodeframe.c896 memset(xd->mb_segment_tree_probs, 255, sizeof(xd->mb_segment_tree_probs)); in vp8_encode_frame()
902 xd->mb_segment_tree_probs[0] = in vp8_encode_frame()
908 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
914 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
919 if (xd->mb_segment_tree_probs[i] == 0) xd->mb_segment_tree_probs[i] = 1; in vp8_encode_frame()
/external/libvpx/libvpx/vp8/decoder/
Ddecodemv.c478 if (vp8_read(r, x->mb_segment_tree_probs[0])) { in read_mb_features()
480 (unsigned char)(2 + vp8_read(r, x->mb_segment_tree_probs[2])); in read_mb_features()
483 (unsigned char)(vp8_read(r, x->mb_segment_tree_probs[1])); in read_mb_features()
Ddecodeframe.c1024 memset(xd->mb_segment_tree_probs, 255, sizeof(xd->mb_segment_tree_probs)); in vp8_decode_frame()
1030 xd->mb_segment_tree_probs[i] = (vp8_prob)vp8_read_literal(bc, 8); in vp8_decode_frame()
/external/libvpx/libvpx/vp8/common/
Dblockd.h261 vp8_prob mb_segment_tree_probs[MB_FEATURE_TREE_PROBS]; member