Home
last modified time | relevance | path

Searched refs:phase_offset_h (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
478 phase_offset_h = 0; in bicubic_scale()
491 if (phase_offset_h && (lh < in_height - 2)) { in bicubic_scale()
495 temp_sum = c_h[phase_offset_h * 4 + 3] * ip[w - in_stride]; in bicubic_scale()
496 temp_sum += c_h[phase_offset_h * 4 + 2] * ip[w]; in bicubic_scale()
497 temp_sum += c_h[phase_offset_h * 4 + 1] * ip[w + in_stride]; in bicubic_scale()
498 temp_sum += c_h[phase_offset_h * 4] * ip[w + 2 * in_stride]; in bicubic_scale()
506 if (++phase_offset_h >= g_b_scaler.nh) in bicubic_scale()
507 phase_offset_h = 0; in bicubic_scale()