Lines Matching defs:mode
352 static inline void modify_pred(const int8_t *mod_table, int *mode)
354 *mode = mod_table[*mode];
355 if (*mode < 0) {
356 av_log(NULL, AV_LOG_ERROR, "Illegal intra prediction mode\n");
357 *mode = 0;
574 enum cavs_mv_pred mode, enum cavs_block size, int ref)
586 if (mode == MV_PRED_PSKIP &&
599 } else if (mode == MV_PRED_LEFT && mvA->ref == ref) {
601 } else if (mode == MV_PRED_TOP && mvB->ref == ref) {
603 } else if (mode == MV_PRED_TOPRIGHT && mvC->ref == ref) {
612 if (mode < MV_PRED_PSKIP) {