Lines Matching defs:est_run
347 const int est_run)
349 w->prediction_table[w->mb_x * 2 + (w->mb_y & 1)] = (est_run << 2) + 1 * (orient == 4) + 2 * (orient == 8);
385 w->est_run = w->prediction_table[!(w->mb_y & 1)] >> 2;
390 w->est_run = w->prediction_table[2 * w->mb_x - 2] >> 2;
394 w->est_run = 16;
403 w->est_run = FFMIN(b, a);
408 w->est_run = FFMIN(c, w->est_run);
409 w->est_run >>= 2;
537 int ac_mode, dc_mode, est_run, dc_level;
549 dc_mode = !!w->est_run; // 0, 1
559 est_run = 64; // not used
566 est_run = 64;
568 if (w->est_run > 1) {
570 est_run = w->est_run;
573 est_run = 64;
584 if (n >= est_run) {