HomeSort by relevance Sort by last modified time
    Searched refs:mb_segment_tree_probs (Results 1 - 6 of 6) sorted by null

  /external/libvpx/vp8/common/
blockd.h 254 vp8_prob mb_segment_tree_probs[MB_FEATURE_TREE_PROBS]; /* Probability Tree used to code Segment number */ member in struct:__anon8427
  /external/libvpx/vp8/encoder/
bitstream.c 820 vp8_write(w, 0, x->mb_segment_tree_probs[0]);
821 vp8_write(w, 0, x->mb_segment_tree_probs[1]);
824 vp8_write(w, 0, x->mb_segment_tree_probs[0]);
825 vp8_write(w, 1, x->mb_segment_tree_probs[1]);
828 vp8_write(w, 1, x->mb_segment_tree_probs[0]);
829 vp8_write(w, 0, x->mb_segment_tree_probs[2]);
832 vp8_write(w, 1, x->mb_segment_tree_probs[0]);
833 vp8_write(w, 1, x->mb_segment_tree_probs[2]);
838 vp8_write(w, 0, x->mb_segment_tree_probs[0]);
839 vp8_write(w, 0, x->mb_segment_tree_probs[1])
    [all...]
encodeframe.c 905 vpx_memset(xd->mb_segment_tree_probs, 255 , sizeof(xd->mb_segment_tree_probs));
911 xd->mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count;
917 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count;
    [all...]
onyx_if.c 248 vpx_memset(cpi->mb.e_mbd.mb_segment_tree_probs, 255, sizeof(cpi->mb.e_mbd.mb_segment_tree_probs));
    [all...]
  /external/libvpx/vp8/decoder/
decodemv.c 58 if (vp8_read(r, x->mb_segment_tree_probs[0]))
59 mi->segment_id = (unsigned char)(2 + vp8_read(r, x->mb_segment_tree_probs[2]));
61 mi->segment_id = (unsigned char)(vp8_read(r, x->mb_segment_tree_probs[1]));
decodframe.c 698 vpx_memset(xd->mb_segment_tree_probs, 255, sizeof(xd->mb_segment_tree_probs));
705 xd->mb_segment_tree_probs[i] = (vp8_prob)vp8_read_literal(bc, 8);

Completed in 3713 milliseconds