Searched refs:vpx_writer (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | bitwriter.h | 22 typedef struct vpx_writer { struct 28 } vpx_writer; argument 30 void vpx_start_encode(vpx_writer *bc, uint8_t *buffer); 31 void vpx_stop_encode(vpx_writer *bc); 33 static INLINE void vpx_write(vpx_writer *br, int bit, int probability) { in vpx_write() 81 static INLINE void vpx_write_bit(vpx_writer *w, int bit) { in vpx_write_bit() 85 static INLINE void vpx_write_literal(vpx_writer *w, int data, int bits) { in vpx_write_literal()
|
D | bitwriter.c | 15 void vpx_start_encode(vpx_writer *br, uint8_t *source) { in vpx_start_encode() 24 void vpx_stop_encode(vpx_writer *br) { in vpx_stop_encode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_subexp.h | 21 struct vpx_writer; 23 void vp9_write_prob_diff_update(struct vpx_writer *w, 26 void vp9_cond_prob_diff_update(struct vpx_writer *w, vpx_prob *oldp,
|
D | vp9_subexp.c | 86 static void encode_uniform(vpx_writer *w, int v) { in encode_uniform() 97 static INLINE int write_bit_gte(vpx_writer *w, int word, int test) { in write_bit_gte() 102 static void encode_term_subexp(vpx_writer *w, int word) { in encode_term_subexp() 114 void vp9_write_prob_diff_update(vpx_writer *w, vpx_prob newp, vpx_prob oldp) { in vp9_write_prob_diff_update() 199 void vp9_cond_prob_diff_update(vpx_writer *w, vpx_prob *oldp, in vp9_cond_prob_diff_update()
|
D | vp9_encodemv.h | 23 void vp9_write_nmv_probs(VP9_COMMON *cm, int usehp, vpx_writer *w, 26 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer* w, const MV* mv, const MV* ref,
|
D | vp9_bitstream.c | 48 static void write_intra_mode(vpx_writer *w, PREDICTION_MODE mode, in write_intra_mode() 53 static void write_inter_mode(vpx_writer *w, PREDICTION_MODE mode, in write_inter_mode() 68 int n, vpx_writer *w) { in prob_diff_update() 81 const MACROBLOCKD *xd, vpx_writer *w) { in write_selected_tx_size() 96 int segment_id, const MODE_INFO *mi, vpx_writer *w) { in write_skip() 106 static void update_skip_probs(VP9_COMMON *cm, vpx_writer *w, in update_skip_probs() 114 static void update_switchable_interp_probs(VP9_COMMON *cm, vpx_writer *w, in update_switchable_interp_probs() 123 static void pack_mb_tokens(vpx_writer *w, in pack_mb_tokens() 194 static void write_segment_id(vpx_writer *w, const struct segmentation *seg, in write_segment_id() 202 vpx_writer *w) { in write_ref_frames() [all …]
|
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_encodemv.c | 33 static void encode_mv_component(vpx_writer* w, int comp, in encode_mv_component() 137 static int update_mv(vpx_writer *w, const unsigned int ct[2], vpx_prob *cur_p, in update_mv() 153 int n, vpx_writer *w) { in write_mv_update() 165 void vp9_write_nmv_probs(VP9_COMMON *cm, int usehp, vpx_writer *w, in vp9_write_nmv_probs() 203 void vp9_encode_mv(VP9_COMP* cpi, vpx_writer* w, in vp9_encode_mv()
|
/external/libvpx/libvpx/test/ |
D | vp9_boolcoder_test.cc | 52 vpx_writer bw; in TEST()
|