Searched refs:vp9_rb_read_literal (Results 1 – 4 of 4) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
D | vp9_read_bit_buffer.c | 30 int vp9_rb_read_literal(struct vp9_read_bit_buffer *rb, int bits) { in vp9_rb_read_literal() function 39 const int value = vp9_rb_read_literal(rb, bits); in vp9_rb_read_signed_literal()
|
D | vp9_decodeframe.c | 77 const int data = vp9_rb_read_literal(rb, get_unsigned_bits(max)); in decode_unsigned_max() 505 seg->tree_probs[i] = vp9_rb_read_bit(rb) ? vp9_rb_read_literal(rb, 8) in setup_segmentation() 511 seg->pred_probs[i] = vp9_rb_read_bit(rb) ? vp9_rb_read_literal(rb, 8) in setup_segmentation() 544 lf->filter_level = vp9_rb_read_literal(rb, 6); in setup_loopfilter() 545 lf->sharpness_level = vp9_rb_read_literal(rb, 3); in setup_loopfilter() 578 cm->base_qindex = vp9_rb_read_literal(rb, QINDEX_BITS); in setup_quantization() 599 : literal_to_filter[vp9_rb_read_literal(rb, 2)]; in read_interp_filter() 604 const int w = vp9_rb_read_literal(rb, 16) + 1; in read_frame_size() 605 const int h = vp9_rb_read_literal(rb, 16) + 1; in read_frame_size() 997 if (vp9_rb_read_literal(rb, 8) != VP9_SYNC_CODE_0 || in check_sync_code() [all …]
|
D | vp9_read_bit_buffer.h | 37 int vp9_rb_read_literal(struct vp9_read_bit_buffer *rb, int bits);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_dx_iface.c | 98 const int frame_marker = vp9_rb_read_literal(&rb, 2); in vp9_peek_si() 118 if (vp9_rb_read_literal(&rb, 8) != VP9_SYNC_CODE_0 || in vp9_peek_si() 119 vp9_rb_read_literal(&rb, 8) != VP9_SYNC_CODE_1 || in vp9_peek_si() 120 vp9_rb_read_literal(&rb, 8) != VP9_SYNC_CODE_2) { in vp9_peek_si() 124 colorspace = vp9_rb_read_literal(&rb, 3); in vp9_peek_si() 141 si->w = vp9_rb_read_literal(&rb, 16) + 1; in vp9_peek_si() 142 si->h = vp9_rb_read_literal(&rb, 16) + 1; in vp9_peek_si()
|