Home
last modified time | relevance | path

Searched refs:phase_offset_w (Results 1 – 1 of 1) sorted by relevance

/external/libvpx/libvpx/vpx_scale/generic/
Dbicubic_scaler.c468 int phase_offset_w, phase_offset_h; in bicubic_scale() local
511 phase_offset_w = 0; in bicubic_scale()
517 temp_sum = c_w[phase_offset_w * 4] * hbuf[lw - 1]; in bicubic_scale()
518 temp_sum += c_w[phase_offset_w * 4 + 1] * hbuf[lw]; in bicubic_scale()
519 temp_sum += c_w[phase_offset_w * 4 + 2] * hbuf[lw + 1]; in bicubic_scale()
520 temp_sum += c_w[phase_offset_w * 4 + 3] * hbuf[lw + 2]; in bicubic_scale()
523 if (++phase_offset_w >= g_b_scaler.nw) in bicubic_scale()
524 phase_offset_w = 0; in bicubic_scale()