Home
last modified time | relevance | path

Searched refs:VP8GetValue (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/utility/
Dvp8_header_parser.cc100 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/
Dbit_reader_utils.h95 uint32_t VP8GetValue(VP8BitReader* const br, int num_bits);
97 return VP8GetValue(br, 1); in VP8Get()
Dbit_reader_utils.c105 uint32_t VP8GetValue(VP8BitReader* const br, int bits) { in VP8GetValue() function
114 const int value = VP8GetValue(br, bits); in VP8GetSignedValue()
/external/webp/src/dec/
Dtree_dec.c518 VP8GetValue(br, 8) : CoeffsProba0[t][b][c][p]; in VP8ParseProba()
529 dec->skip_p_ = VP8GetValue(br, 8); in VP8ParseProba()
Dvp8_dec.c180 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()
Dquant_dec.c64 const int base_q0 = VP8GetValue(br, 7); in VP8ParseQuant()