Home
last modified time | relevance | path

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

/external/webrtc/modules/video_coding/utility/
Dvp8_header_parser.cc79 uint32_t VP8GetValue(VP8BitReader* br, int num_bits) { in VP8GetValue() function
93 int v = VP8GetValue(br, num_bits); in VP8GetSignedValue()
94 int sign = VP8GetValue(br, 1); in VP8GetSignedValue()
99 int use_segment = VP8GetValue(br, 1); in ParseSegmentHeader()
101 int update_map = VP8GetValue(br, 1); in ParseSegmentHeader()
102 if (VP8GetValue(br, 1)) { // update_segment_feature_data. in ParseSegmentHeader()
103 VP8GetValue(br, 1); // segment_feature_mode. in ParseSegmentHeader()
106 bool quantizer_update = VP8GetValue(br, 1); in ParseSegmentHeader()
112 bool loop_filter_update = VP8GetValue(br, 1); in ParseSegmentHeader()
121 bool segment_prob_update = VP8GetValue(br, 1); in ParseSegmentHeader()
[all …]
/external/webp/src/utils/
Dbit_reader_utils.h33 #define VP8Get(BR, L) VP8GetValue(BR, 1, L)
37 #define VP8GetValue(BR, N, L) VP8GetValue(BR, N) macro
38 #define VP8Get(BR, L) VP8GetValue(BR, 1, L)
116 uint32_t VP8GetValue(VP8BitReader* const br, int num_bits, const char label[]);
Dbit_reader_utils.c105 uint32_t VP8GetValue(VP8BitReader* const br, int bits, const char label[]) { in VP8GetValue() function
115 const int value = VP8GetValue(br, bits, label); in VP8GetSignedValue()
/external/webp/src/dec/
Dtree_dec.c523 VP8GetValue(br, 8, "global-header") : in VP8ParseProba()
535 dec->skip_p_ = VP8GetValue(br, 8, "global-header"); in VP8ParseProba()
Dquant_dec.c64 const int base_q0 = VP8GetValue(br, 7, "global-header"); in VP8ParseQuant()
Dvp8_dec.c183 VP8GetValue(br, 8, "global-header") : 255u; in ParseSegmentHeader()
211 dec->num_parts_minus_one_ = (1 << VP8GetValue(br, 2, "global-header")) - 1; in ParsePartitions()
236 hdr->level_ = VP8GetValue(br, 6, "global-header"); in ParseFilterHeader()
237 hdr->sharpness_ = VP8GetValue(br, 3, "global-header"); in ParseFilterHeader()