Home | History | Annotate | Download | only in enc

Lines Matching full:nb_mbs

116   const int nb_mbs = enc->mb_w_ * enc->mb_h_;
119 proba->skip_proba_ = CalcSkipProba(nb_events, nb_mbs);
124 + (nb_mbs - nb_events) * VP8BitCost(0, proba->skip_proba_);
541 int nb_mbs, int percent_delta,
547 const uint64_t pixel_count = nb_mbs * 384;
565 } while (VP8IteratorNext(&it) && --nb_mbs > 0);
590 int nb_mbs = enc->mb_w_ * enc->mb_h_;
599 nb_mbs = (nb_mbs > 200) ? nb_mbs >> 1 : 100;
601 nb_mbs = (nb_mbs > 200) ? nb_mbs >> 2 : 50;
610 OneStatPass(enc, rd_opt, nb_mbs, percent_per_pass, &stats);