Searched refs:VP8Get (Results 1 - 6 of 6) sorted by relevance
/external/webp/src/dec/ |
H A D | quant.c | 65 const int dqy1_dc = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0; 66 const int dqy2_dc = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0; 67 const int dqy2_ac = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0; 68 const int dquv_dc = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0; 69 const int dquv_ac = VP8Get(br) ? VP8GetSignedValue(br, 4) : 0;
|
H A D | vp8.c | 153 hdr->use_segment_ = VP8Get(br); 155 hdr->update_map_ = VP8Get(br); 156 if (VP8Get(br)) { // update data 158 hdr->absolute_delta_ = VP8Get(br); 160 hdr->quantizer_[s] = VP8Get(br) ? VP8GetSignedValue(br, 7) : 0; 163 hdr->filter_strength_[s] = VP8Get(br) ? VP8GetSignedValue(br, 6) : 0; 169 proba->segments_[s] = VP8Get(br) ? VP8GetValue(br, 8) : 255u; 221 hdr->simple_ = VP8Get(br); 224 hdr->use_lf_delta_ = VP8Get(br); 226 if (VP8Get(b [all...] |
H A D | tree.c | 520 dec->use_skip_proba_ = VP8Get(br);
|
/external/webrtc/webrtc/modules/video_coding/utility/ |
H A D | vp8_header_parser.cc | 108 static uint32_t VP8Get(VP8BitReader* const br) { function in namespace:webrtc::vp8 114 return VP8Get(br) ? -value : value; 118 int use_segment = VP8Get(br); 120 int update_map = VP8Get(br); 121 if (VP8Get(br)) { 123 VP8Get(br); 125 VP8Get(br) ? VP8GetSignedValue(br, 7) : 0; 128 VP8Get(br) ? VP8GetSignedValue(br, 6) : 0; 134 VP8Get(br) ? VP8GetValue(br, 8) : 255; 141 VP8Get(b [all...] |
/external/webp/src/utils/ |
H A D | bit_reader.h | 96 static WEBP_INLINE uint32_t VP8Get(VP8BitReader* const br) { function
|
H A D | bit_reader.c | 114 return VP8Get(br) ? -value : value;
|
Completed in 95 milliseconds