Searched refs:out_width (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/vpx_scale/include/generic/
H A Dvpxscale_arbitrary.h22 int out_width; member in struct:__anon8275
46 int bicubic_coefficient_setup(int in_width, int in_height, int out_width, int out_height);
48 int out_width, int out_height, int out_stride,
/external/webp/src/dec/
H A Dio.c313 const int out_width = io->scaled_width; local
315 const int uv_out_width = (out_width + 1) >> 1;
319 const size_t work_size = 2 * out_width; // scratch memory for luma rescaler
334 buf->y, out_width, out_height, buf->y_stride, 1,
335 io->mb_w, out_width, io->mb_h, out_height,
351 buf->a, out_width, out_height, buf->a_stride, 1,
352 io->mb_w, out_width, io->mb_h, out_height,
485 const int out_width = io->scaled_width; local
489 const size_t work_size = 2 * out_width; // scratch memory for one rescaler
495 tmp_size2 = 3 * out_width;
[all...]
H A Dvp8l.c378 const int out_width = io->scaled_width; local
381 const uint64_t work_size = 2 * num_channels * (uint64_t)out_width;
383 const uint64_t scaled_data_size = num_channels * (uint64_t)out_width;
403 out_width, out_height, 0, num_channels,
404 in_width, out_width, in_height, out_height, work);
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c295 int bicubic_coefficient_setup(int in_width, int in_height, int out_width, int out_height) argument
313 && (out_width == g_b_scaler.out_width) && (out_height == g_b_scaler.out_height))
318 g_b_scaler.out_width = out_width;
324 if (out_width <= 0 || out_height <= 0)
328 gcd_w = gcd(out_width, in_width);
335 g_b_scaler.nw = out_width / gcd_w;
351 g_b_scaler.l_w = (short *)vpx_memalign(32, out_width * 2);
466 for (i = 0; i < out_width;
484 bicubic_scale(int in_width, int in_height, int in_stride, int out_width, int out_height, int out_stride, unsigned char *input_image, unsigned char *output_image) argument
[all...]

Completed in 67 milliseconds