Lines Matching defs:prediction_table
331 static const uint8_t prediction_table[3][12] = {
341 w->orient=prediction_table[w->orient][w->raw_orient];
349 w->prediction_table[w->mb_x * 2 + (w->mb_y & 1)] = (est_run << 2) + 1 * (orient == 4) + 2 * (orient == 8);
369 w->chroma_orient = (w->prediction_table[2 * w->mb_x - 2] & 0x03) << 2;
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;
399 b = w->prediction_table[2 * w->mb_x + !(w->mb_y & 1)]; // block[x ][y - 1]
400 a = w->prediction_table[2 * w->mb_x - 2 + (w->mb_y & 1)]; // block[x - 1][y ]
401 c = w->prediction_table[2 * w->mb_x - 2 + !(w->mb_y & 1)]; // block[x - 1][y - 1]
710 w->prediction_table = av_mallocz(w->mb_width * 2 * 2);
711 if (!w->prediction_table)
736 av_freep(&w->prediction_table);