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

  /external/webp/src/dec/
bits.c 62 uint32_t VP8GetValue(VP8BitReader* const br, int bits) {
71 const int value = VP8GetValue(br, bits);
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);
bits.h 41 uint32_t VP8GetValue(VP8BitReader* const br, int num_bits);
43 return VP8GetValue(br, 1);
quant.c 66 const int base_q0 = VP8GetValue(br, 7);
vp8.c 160 proba->segments_[s] = VP8Get(br) ? VP8GetValue(br, 8) : 255u;
187 dec->num_parts_ = 1 << VP8GetValue(br, 2);
211 hdr->level_ = VP8GetValue(br, 6);
212 hdr->sharpness_ = VP8GetValue(br, 3);
404 dec->buffer_flags_ |= VP8GetValue(br, 2) << 2;
407 dec->buffer_flags_ |= VP8GetValue(br, 2) << 4;

Completed in 54 milliseconds