Home | History | Annotate | Download | only in dec

Lines Matching refs:VP8GetBit

468   if (!VP8GetBit(br, p[3])) {
469 if (!VP8GetBit(br, p[4])) {
472 v = 3 + VP8GetBit(br, p[5]);
475 if (!VP8GetBit(br, p[6])) {
476 if (!VP8GetBit(br, p[7])) {
477 v = 5 + VP8GetBit(br, 159);
479 v = 7 + 2 * VP8GetBit(br, 165);
480 v += VP8GetBit(br, 145);
484 const int bit1 = VP8GetBit(br, p[8]);
485 const int bit0 = VP8GetBit(br, p[9 + bit1]);
489 v += v + VP8GetBit(br, *tab);
503 if (!VP8GetBit(br, p[0])) { // first EOB is more a 'CBP' bit.
508 if (!VP8GetBit(br, p[1])) {
512 if (!VP8GetBit(br, p[2])) {
520 if (n < 15 && !VP8GetBit(br, p[0])) { // EOB
642 dec->segment_ = !VP8GetBit(br, dec->proba_.segments_[0]) ?
643 VP8GetBit(br, dec->proba_.segments_[1]) :
644 2 + VP8GetBit(br, dec->proba_.segments_[2]);
646 info->skip_ = dec->use_skip_proba_ ? VP8GetBit(br, dec->skip_p_) : 0;