Searched refs:vpx_writer (Results 1 – 10 of 10) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | bitwriter.h | 27 typedef struct vpx_writer { struct 33 } vpx_writer; argument 35 void vpx_start_encode(vpx_writer *br, uint8_t *source); 36 void vpx_stop_encode(vpx_writer *br); 38 static INLINE void vpx_write(vpx_writer *br, int bit, int probability) { in vpx_write() 101 static INLINE void vpx_write_bit(vpx_writer *w, int bit) { in vpx_write_bit() 105 static INLINE void vpx_write_literal(vpx_writer *w, int data, int bits) { in vpx_write_literal()
|
D | bitwriter.c | 19 void vpx_start_encode(vpx_writer *br, uint8_t *source) { in vpx_start_encode() 28 void vpx_stop_encode(vpx_writer *br) { in vpx_stop_encode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_subexp.h | 20 struct vpx_writer; 22 void vp9_write_prob_diff_update(struct vpx_writer *w, vpx_prob newp, 25 void vp9_cond_prob_diff_update(struct vpx_writer *w, vpx_prob *oldp,
|
D | vp9_subexp.c | 84 static void encode_uniform(vpx_writer *w, int v) { in encode_uniform() 95 static INLINE int write_bit_gte(vpx_writer *w, int word, int test) { in write_bit_gte() 100 static void encode_term_subexp(vpx_writer *w, int word) { in encode_term_subexp() 112 void vp9_write_prob_diff_update(vpx_writer *w, vpx_prob newp, vpx_prob oldp) { in vp9_write_prob_diff_update() 181 void vp9_cond_prob_diff_update(vpx_writer *w, vpx_prob *oldp, in vp9_cond_prob_diff_update()
|
D | vp9_encodemv.h | 22 void vp9_write_nmv_probs(VP9_COMMON *cm, int usehp, vpx_writer *w, 25 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer *w, const MV *mv, const MV *ref,
|
D | vp9_treewriter.h | 31 static INLINE void vp9_write_tree(vpx_writer *w, const vpx_tree_index *tree, in vp9_write_tree() 41 static INLINE void vp9_write_token(vpx_writer *w, const vpx_tree_index *tree, in vp9_write_token()
|
D | vp9_bitstream.c | 56 static void write_intra_mode(vpx_writer *w, PREDICTION_MODE mode, in write_intra_mode() 61 static void write_inter_mode(vpx_writer *w, PREDICTION_MODE mode, in write_inter_mode() 76 vpx_writer *w) { in prob_diff_update() 89 const MACROBLOCKD *const xd, vpx_writer *w) { in write_selected_tx_size() 104 int segment_id, const MODE_INFO *mi, vpx_writer *w) { in write_skip() 114 static void update_skip_probs(VP9_COMMON *cm, vpx_writer *w, in update_skip_probs() 122 static void update_switchable_interp_probs(VP9_COMMON *cm, vpx_writer *w, in update_switchable_interp_probs() 131 static void pack_mb_tokens(vpx_writer *w, TOKENEXTRA **tp, in pack_mb_tokens() 196 static void write_segment_id(vpx_writer *w, const struct segmentation *seg, in write_segment_id() 204 vpx_writer *w) { in write_ref_frames() [all …]
|
D | vp9_encodemv.c | 31 static void encode_mv_component(vpx_writer *w, int comp, in encode_mv_component() 143 static int update_mv(vpx_writer *w, const unsigned int ct[2], vpx_prob *cur_p, in update_mv() 160 vpx_writer *w) { in write_mv_update() 172 void vp9_write_nmv_probs(VP9_COMMON *cm, int usehp, vpx_writer *w, in vp9_write_nmv_probs() 210 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer *w, const MV *mv, const MV *ref, in vp9_encode_mv()
|
D | vp9_bitstream.h | 23 vpx_writer bit_writer;
|
/external/libvpx/libvpx/test/ |
D | vp9_boolcoder_test.cc | 54 vpx_writer bw; in TEST()
|