Searched refs:vpx_write_bit (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | bitwriter.c | 21 vpx_write_bit(br, 0); in vpx_start_encode() 27 for (i = 0; i < 32; i++) vpx_write_bit(br, 0); in vpx_stop_encode()
|
D | bitwriter.h | 81 static INLINE void vpx_write_bit(vpx_writer *w, int bit) { in vpx_write_bit() function 88 for (bit = bits - 1; bit >= 0; bit--) vpx_write_bit(w, 1 & (data >> bit)); in vpx_write_literal()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 164 vpx_write_bit(w, p->extra & 1); in pack_mb_tokens() 184 vpx_write_bit(w, e & 1); in pack_mb_tokens() 584 vpx_write_bit(bc, 0); in update_coef_probs_common() 587 vpx_write_bit(bc, 1); in update_coef_probs_common() 653 vpx_write_bit(bc, 1); in update_coef_probs_common() 669 vpx_write_bit(bc, 0); // no updates in update_coef_probs_common() 686 vpx_write_bit(w, 0); in update_coef_probs() 817 vpx_write_bit(w, cm->tx_mode == TX_MODE_SELECT); in encode_txfm_probs() 1293 vpx_write_bit(&header_bc, use_compound_pred); in write_compressed_header() 1295 vpx_write_bit(&header_bc, use_hybrid_pred); in write_compressed_header()
|