Home | History | Annotate | Download | only in dsp

Lines Matching refs:col

550         const int col = col_start + x;
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
555 } else if (col == 0) {
556 predict = upper_row[col]; // Top.
558 predict = pred_func(current_row[col - 1], upper_row + col);
560 predict_diff = VP8LSubPixels(current_row[col], predict);
598 const int col = col_start + x;
599 const int pix = row * width + col;
602 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
603 } else if (col == 0) {
604 predict = upper_row[col]; // Top.
606 predict = pred_func(current_row[col - 1], upper_row + col);
608 argb[pix] = VP8LSubPixels(current_row[col], predict);