Lines Matching full:predict
629 uint32_t predict;
631 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
633 predict = upper_row[col]; // Top.
635 predict = pred_func(current_row[col - 1], upper_row + col);
637 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
672 uint32_t predict;
674 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
676 predict = upper_row[col]; // Top.
678 predict = pred_func(current_row[col - 1], upper_row + col);
680 argb[pix] = VP8LSubPixels(current_row[col], predict);