Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vpx_dsp/
Dbitwriter.h33 static INLINE void vpx_write(vpx_writer *br, int bit, int probability) { in vpx_write() function
82 vpx_write(w, bit, 128); // vpx_prob_half in vpx_write_bit()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_bitstream.c87 vpx_write(w, tx_size != TX_4X4, tx_probs[0]); in write_selected_tx_size()
89 vpx_write(w, tx_size != TX_8X8, tx_probs[1]); in write_selected_tx_size()
91 vpx_write(w, tx_size != TX_16X16, tx_probs[2]); in write_selected_tx_size()
101 vpx_write(w, skip, vp9_get_skip_prob(cm, xd)); in write_skip()
182 vpx_write(w, bb, *pb++); in pack_mb_tokens()
217 vpx_write(w, is_compound, vp9_get_reference_mode_prob(cm, xd)); in write_ref_frames()
223 vpx_write(w, mbmi->ref_frame[0] == GOLDEN_FRAME, in write_ref_frames()
227 vpx_write(w, bit0, vp9_get_pred_prob_single_ref_p1(cm, xd)); in write_ref_frames()
230 vpx_write(w, bit1, vp9_get_pred_prob_single_ref_p2(cm, xd)); in write_ref_frames()
257 vpx_write(w, pred_flag, pred_prob); in pack_inter_mode_mvs()
[all …]
Dvp9_encodemv.c46 vpx_write(w, sign, mvcomp->sign); in encode_mv_component()
60 vpx_write(w, (d >> i) & 1, mvcomp->bits[i]); in encode_mv_component()
70 vpx_write(w, hp, in encode_mv_component()
142 vpx_write(w, update, upd_p); in update_mv()
Dvp9_subexp.c207 vpx_write(w, 1, upd); in vp9_cond_prob_diff_update()
211 vpx_write(w, 0, upd); in vp9_cond_prob_diff_update()
Dvp9_treewriter.h36 vpx_write(w, bit, probs[i >> 1]); in vp9_write_tree()
/external/libvpx/libvpx/test/
Dvp9_boolcoder_test.cc63 vpx_write(&bw, bit, static_cast<int>(probas[i])); in TEST()