Searched refs:VP8GetValue (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/modules/video_coding/utility/ |
D | vp8_header_parser.cc | 79 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/ |
D | bit_reader_utils.h | 33 #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[]);
|
D | bit_reader_utils.c | 105 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/ |
D | tree_dec.c | 523 VP8GetValue(br, 8, "global-header") : in VP8ParseProba() 535 dec->skip_p_ = VP8GetValue(br, 8, "global-header"); in VP8ParseProba()
|
D | quant_dec.c | 64 const int base_q0 = VP8GetValue(br, 7, "global-header"); in VP8ParseQuant()
|
D | vp8_dec.c | 183 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()
|