HomeSort by relevance Sort by last modified time
    Searched refs:VP8GetValue (Results 1 - 5 of 5) sorted by null

  /external/webp/src/dec/
tree.c 547 proba->coeffs_[t][b][c][p] = VP8GetValue(br, 8);
555 dec->skip_p_ = VP8GetValue(br, 8);
560 dec->intra_p_ = VP8GetValue(br, 8);
561 dec->last_p_ = VP8GetValue(br, 8);
562 dec->golden_p_ = VP8GetValue(br, 8);
565 proba->ymode_[i] = VP8GetValue(br, 8);
570 proba->uvmode_[i] = VP8GetValue(br, 8);
578 const int v = VP8GetValue(br, 7);
quant.c 66 const int base_q0 = VP8GetValue(br, 7);
vp8.c 169 proba->segments_[s] = VP8Get(br) ? VP8GetValue(br, 8) : 255u;
196 dec->num_parts_ = 1 << VP8GetValue(br, 2);
220 hdr->level_ = VP8GetValue(br, 6);
221 hdr->sharpness_ = VP8GetValue(br, 3);
401 dec->buffer_flags_ |= VP8GetValue(br, 2) << 2;
404 dec->buffer_flags_ |= VP8GetValue(br, 2) << 4;
  /external/webp/src/utils/
bit_reader.h 60 uint32_t VP8GetValue(VP8BitReader* const br, int num_bits);
62 return VP8GetValue(br, 1);
bit_reader.c 84 uint32_t VP8GetValue(VP8BitReader* const br, int bits) {
93 const int value = VP8GetValue(br, bits);

Completed in 6237 milliseconds