Searched refs:vp9_read (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 50 val += (vp9_read(r, prob) << bits_count); \ 81 if (!vp9_read(r, prob[EOB_CONTEXT_NODE])) { in decode_coefs() 86 while (!vp9_read(r, prob[ZERO_CONTEXT_NODE])) { in decode_coefs() 99 if (!vp9_read(r, prob[ONE_CONTEXT_NODE])) { in decode_coefs() 108 if (!vp9_read(r, prob[LOW_VAL_CONTEXT_NODE])) { in decode_coefs() 109 if (!vp9_read(r, prob[TWO_CONTEXT_NODE])) { in decode_coefs() 112 if (!vp9_read(r, prob[THREE_CONTEXT_NODE])) { in decode_coefs() 118 if (!vp9_read(r, prob[HIGH_LOW_CONTEXT_NODE])) { in decode_coefs() 119 if (!vp9_read(r, prob[CAT_ONE_CONTEXT_NODE])) { in decode_coefs() 130 if (!vp9_read(r, prob[CAT_THREEFOUR_CONTEXT_NODE])) { in decode_coefs() [all …]
|
D | vp9_decodemv.c | 65 int tx_size = vp9_read(r, tx_probs[0]); in read_selected_tx_size() 67 tx_size += vp9_read(r, tx_probs[1]); in read_selected_tx_size() 69 tx_size += vp9_read(r, tx_probs[2]); in read_selected_tx_size() 137 mbmi->seg_id_predicted = vp9_read(r, pred_prob); in read_inter_segment_id() 153 const int skip = vp9_read(r, cm->fc.skip_probs[ctx]); in read_skip() 206 const int sign = vp9_read(r, mvcomp->sign); in read_mv_component() 219 d |= vp9_read(r, mvcomp->bits[i]) << i; in read_mv_component() 228 hp = usehp ? vp9_read(r, class0 ? mvcomp->class0_hp : mvcomp->hp) in read_mv_component() 262 (REFERENCE_MODE)vp9_read(r, cm->fc.comp_inter_prob[ctx]); in read_block_reference_mode() 288 const int bit = vp9_read(r, fc->comp_ref_prob[ctx]); in read_ref_frames() [all …]
|
D | vp9_reader.h | 55 static INLINE int vp9_read(vp9_reader *r, int prob) { in vp9_read() function 93 return vp9_read(r, 128); // vp9_prob_half in vp9_read_bit() 109 while ((i = tree[i + vp9_read(r, probs[i >> 1])]) > 0) in vp9_read_tree()
|
D | vp9_dsubexp.c | 72 if (vp9_read(r, DIFF_UPDATE_PROB)) { in vp9_diff_update_prob()
|
D | vp9_decodeframe.c | 151 if (vp9_read(r, MV_UPDATE_PROB)) in update_mv_probs() 395 p = vp9_read(r, probs[1]) ? PARTITION_SPLIT : PARTITION_HORZ; in read_partition() 397 p = vp9_read(r, probs[2]) ? PARTITION_SPLIT : PARTITION_VERT; in read_partition()
|
/external/libvpx/libvpx/test/ |
D | vp9_boolcoder_test.cc | 81 GTEST_ASSERT_EQ(vp9_read(&br, probas[i]), bit) in TEST()
|