Home
last modified time | relevance | path

Searched refs:est_run (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dintrax8.c347 const int est_run) in x8_update_predictions() argument
349 …w->prediction_table[w->mb_x * 2 + (w->mb_y & 1)] = (est_run << 2) + 1 * (orient == 4) + 2 * (orien… in x8_update_predictions()
385 w->est_run = w->prediction_table[!(w->mb_y & 1)] >> 2; in x8_get_prediction()
390 w->est_run = w->prediction_table[2 * w->mb_x - 2] >> 2; in x8_get_prediction()
394 w->est_run = 16; in x8_get_prediction()
403 w->est_run = FFMIN(b, a); in x8_get_prediction()
408 w->est_run = FFMIN(c, w->est_run); in x8_get_prediction()
409 w->est_run >>= 2; in x8_get_prediction()
537 int ac_mode, dc_mode, est_run, dc_level; in x8_decode_intra_mb() local
549 dc_mode = !!w->est_run; // 0, 1 in x8_decode_intra_mb()
[all …]
Dintrax8.h70 int est_run; member