Searched refs:vp9_rb_read_bit (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_read_bit_buffer.c16 int vp9_rb_read_bit(struct vp9_read_bit_buffer *rb) { function
33 value |= vp9_rb_read_bit(rb) << bit;
40 return vp9_rb_read_bit(rb) ? -value : value;
H A Dvp9_read_bit_buffer.h35 int vp9_rb_read_bit(struct vp9_read_bit_buffer *rb);
H A Dvp9_decodeframe.c510 seg->enabled = vp9_rb_read_bit(rb);
515 seg->update_map = vp9_rb_read_bit(rb);
518 seg->tree_probs[i] = vp9_rb_read_bit(rb) ? vp9_rb_read_literal(rb, 8)
521 seg->temporal_update = vp9_rb_read_bit(rb);
524 seg->pred_probs[i] = vp9_rb_read_bit(rb) ? vp9_rb_read_literal(rb, 8)
533 seg->update_data = vp9_rb_read_bit(rb);
535 seg->abs_delta = vp9_rb_read_bit(rb);
542 const int feature_enabled = vp9_rb_read_bit(rb);
547 data = vp9_rb_read_bit(rb) ? -data : data;
564 lf->mode_ref_delta_enabled = vp9_rb_read_bit(r
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_read_bit_buffer.c16 int vp9_rb_read_bit(struct vp9_read_bit_buffer *rb) { function
33 value |= vp9_rb_read_bit(rb) << bit;
40 return vp9_rb_read_bit(rb) ? -value : value;
H A Dvp9_read_bit_buffer.h35 int vp9_rb_read_bit(struct vp9_read_bit_buffer *rb);
H A Dvp9_decodeframe.c495 seg->enabled = vp9_rb_read_bit(rb);
500 seg->update_map = vp9_rb_read_bit(rb);
503 seg->tree_probs[i] = vp9_rb_read_bit(rb) ? vp9_rb_read_literal(rb, 8)
506 seg->temporal_update = vp9_rb_read_bit(rb);
509 seg->pred_probs[i] = vp9_rb_read_bit(rb) ? vp9_rb_read_literal(rb, 8)
518 seg->update_data = vp9_rb_read_bit(rb);
520 seg->abs_delta = vp9_rb_read_bit(rb);
527 const int feature_enabled = vp9_rb_read_bit(rb);
532 data = vp9_rb_read_bit(rb) ? -data : data;
549 lf->mode_ref_delta_enabled = vp9_rb_read_bit(r
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_dx_iface.c151 if (vp9_rb_read_bit(&rb)) { // show an existing frame
159 si->is_kf = !vp9_rb_read_bit(&rb);
160 show_frame = vp9_rb_read_bit(&rb);
161 error_resilient = vp9_rb_read_bit(&rb);
171 intra_only_flag = show_frame ? 0 : vp9_rb_read_bit(&rb);
/external/libvpx/libvpx/vp9/
H A Dvp9_dx_iface.c112 const int version = vp9_rb_read_bit(&rb);
113 (void) vp9_rb_read_bit(&rb); // unused version bit
119 if (vp9_rb_read_bit(&rb)) { // show an existing frame
123 si->is_kf = !vp9_rb_read_bit(&rb);

Completed in 588 milliseconds