Home | History | Annotate | Download | only in dsp

Lines Matching refs:Predict

541 static WEBP_INLINE uint32_t Predict(VP8LPredictorFunc pred_func,
589 const uint32_t predict =
590 Predict(pred_func, col, row, current_row, upper_row);
591 uint32_t residual = VP8LSubPixels(current_row[col], predict);
643 const uint32_t predict =
644 Predict(pred_func, x, y, current_row, upper_row);
645 argb[y * width + x] = VP8LSubPixels(current_row[x], predict);
649 uint32_t predict, residual;
655 predict = Predict(pred_func, x, y, current_row, upper_row);
656 residual = VP8LSubPixels(current_row[x], predict);
664 current_row[x] = predict & ~kMaskAlpha;