Home | History | Annotate | Download | only in dsp

Lines Matching refs:pred_func

541 static WEBP_INLINE uint32_t Predict(VP8LPredictorFunc pred_func,
550 return pred_func(current_row[x - 1], upper_row + x);
578 const VP8LPredictorFunc pred_func = VP8LPredictors[mode];
590 Predict(pred_func, col, row, current_row, upper_row);
630 VP8LPredictorFunc pred_func =
644 Predict(pred_func, x, y, current_row, upper_row);
653 pred_func = VP8LPredictors[mode];
655 predict = Predict(pred_func, x, y, current_row, upper_row);