OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8GetValue
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/modules/video_coding/utility/
vp8_header_parser.cc
100
static uint32_t
VP8GetValue
(VP8BitReader* const br, int bits) {
109
return
VP8GetValue
(br, 1);
113
const int value =
VP8GetValue
(br, bits);
134
VP8Get(br) ?
VP8GetValue
(br, 8) : 255;
142
VP8GetValue
(br, 6);
143
VP8GetValue
(br, 3);
191
VP8GetValue
(&br, 2);
193
const int base_q0 =
VP8GetValue
(&br, 7);
/external/webp/src/utils/
bit_reader_utils.h
95
uint32_t
VP8GetValue
(VP8BitReader* const br, int num_bits);
97
return
VP8GetValue
(br, 1);
bit_reader_utils.c
105
uint32_t
VP8GetValue
(VP8BitReader* const br, int bits) {
114
const int value =
VP8GetValue
(br, bits);
/external/webp/src/dec/
quant_dec.c
64
const int base_q0 =
VP8GetValue
(br, 7);
tree_dec.c
518
VP8GetValue
(br, 8) : CoeffsProba0[t][b][c][p];
529
dec->skip_p_ =
VP8GetValue
(br, 8);
vp8_dec.c
180
proba->segments_[s] = VP8Get(br) ?
VP8GetValue
(br, 8) : 255u;
208
dec->num_parts_minus_one_ = (1 <<
VP8GetValue
(br, 2)) - 1;
233
hdr->level_ =
VP8GetValue
(br, 6);
234
hdr->sharpness_ =
VP8GetValue
(br, 3);
Completed in 62 milliseconds