Searched refs:VP8GetValue (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/webrtc/modules/video_coding/utility/ |
D | vp8_header_parser.cc | 100 static uint32_t VP8GetValue(VP8BitReader* const br, int bits) { in VP8GetValue() function 109 return VP8GetValue(br, 1); in VP8Get() 113 const int value = VP8GetValue(br, bits); in VP8GetSignedValue() 134 VP8Get(br) ? VP8GetValue(br, 8) : 255; in ParseSegmentHeader() 142 VP8GetValue(br, 6); in ParseFilterHeader() 143 VP8GetValue(br, 3); in ParseFilterHeader() 191 VP8GetValue(&br, 2); in GetQp() 193 const int base_q0 = VP8GetValue(&br, 7); in GetQp()
|
/external/webp/src/utils/ |
D | bit_reader_utils.h | 95 uint32_t VP8GetValue(VP8BitReader* const br, int num_bits); 97 return VP8GetValue(br, 1); in VP8Get()
|
D | bit_reader_utils.c | 105 uint32_t VP8GetValue(VP8BitReader* const br, int bits) { in VP8GetValue() function 114 const int value = VP8GetValue(br, bits); in VP8GetSignedValue()
|
/external/webp/src/dec/ |
D | tree_dec.c | 518 VP8GetValue(br, 8) : CoeffsProba0[t][b][c][p]; in VP8ParseProba() 529 dec->skip_p_ = VP8GetValue(br, 8); in VP8ParseProba()
|
D | vp8_dec.c | 180 proba->segments_[s] = VP8Get(br) ? VP8GetValue(br, 8) : 255u; in ParseSegmentHeader() 208 dec->num_parts_minus_one_ = (1 << VP8GetValue(br, 2)) - 1; in ParsePartitions() 233 hdr->level_ = VP8GetValue(br, 6); in ParseFilterHeader() 234 hdr->sharpness_ = VP8GetValue(br, 3); in ParseFilterHeader()
|
D | quant_dec.c | 64 const int base_q0 = VP8GetValue(br, 7); in VP8ParseQuant()
|