Searched refs:in_height (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/vpx_scale/include/generic/ |
D | vpxscale_arbitrary.h | 20 int in_height; 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/ |
D | bicubic_scaler.c | 295 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() 317 g_b_scaler.in_height = in_height; in bicubic_coefficient_setup() 329 gcd_h = gcd(out_height, in_height); in bicubic_coefficient_setup() 330 gcd_h_uv = gcd(out_height, in_height / 2); in bicubic_coefficient_setup() 339 d_h = in_height / gcd_h; in bicubic_coefficient_setup() 342 d_h_uv = (in_height / 2) / gcd_h_uv; in bicubic_coefficient_setup() 484 int bicubic_scale(int in_width, int in_height, int in_stride, in bicubic_scale() argument 518 if (phase_offset_h && (lh < in_height - 2)) in bicubic_scale()
|