Home | History | Annotate | Download | only in dsp

Lines Matching refs:current_row

539     const uint32_t* current_row = argb_scratch;
547 const uint32_t* const upper_row = current_row;
548 current_row = upper_row + width;
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
558 predict = pred_func(current_row[col - 1], upper_row + col);
560 predict_diff = VP8LSubPixels(current_row[col], predict);
589 const uint32_t* current_row = argb_scratch;
595 const uint32_t* const upper_row = current_row;
596 current_row = upper_row + width;
602 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
606 predict = pred_func(current_row[col - 1], upper_row + col);
608 argb[pix] = VP8LSubPixels(current_row[col], predict);