Home
last modified time | relevance | path

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

/external/libvpx/vpx_scale/include/generic/
Dvpxscale_arbitrary.h19 int in_width; member
46 int bicubic_coefficient_setup(int in_width, int in_height, int out_width, int out_height);
47 int bicubic_scale(int in_width, int in_height, int in_stride,
/external/libvpx/vpx_scale/generic/
Dbicubic_scaler.c295 int bicubic_coefficient_setup(int in_width, int in_height, int out_width, int out_height) in bicubic_coefficient_setup() argument
312 if ((in_width == g_b_scaler.in_width) && (in_height == g_b_scaler.in_height) in bicubic_coefficient_setup()
316 g_b_scaler.in_width = in_width; in bicubic_coefficient_setup()
328 gcd_w = gcd(out_width, in_width); in bicubic_coefficient_setup()
336 d_w = in_width / gcd_w; in bicubic_coefficient_setup()
470 if ((g_b_scaler.l_w[i] + 2) <= in_width) in bicubic_coefficient_setup()
484 int bicubic_scale(int in_width, int in_height, int in_stride, in bicubic_scale() argument
522 for (w = 0; w < in_width; w++) in bicubic_scale()
558 if ((lw + 2) >= in_width) in bicubic_scale()