Home | History | Annotate | Download | only in dsp

Lines Matching defs:predict

408         uint32_t predict;
411 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
413 predict = upper_row[col]; // Top.
415 predict = pred_func(current_row[col - 1], upper_row + col);
417 predict_diff = VP8LSubPixels(current_row[col], predict);
457 uint32_t predict;
459 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
461 predict = upper_row[col]; // Top.
463 predict = pred_func(current_row[col - 1], upper_row + col);
465 argb[pix] = VP8LSubPixels(current_row[col], predict);
725 uint32_t predict;
732 predict = TransformColor(&tx, argb[ix], 0);
733 ++histo[(predict >> 16) & 0xff]; // red.
762 uint32_t predict;
769 predict = TransformColor(&tx, argb[ix], 0);
770 ++histo[predict & 0xff]; // blue.