Searched defs:crop_height (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_to_argb.cc36 int crop_width, int crop_height,
44 int inv_crop_height = (crop_height < 0) ? -crop_height : crop_height;
57 int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height;
61 src_height == 0 || crop_height == 0) {
32 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
H A Dconvert_to_i420.cc35 int crop_width, int crop_height,
43 int inv_crop_height = (crop_height < 0) ? -crop_height : crop_height;
55 int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height;
59 src_height == 0 || crop_height == 0) {
28 ConvertToI420(const uint8* sample, size_t sample_size, uint8* y, int y_stride, uint8* u, int u_stride, uint8* v, int v_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
/external/libjpeg-turbo/
H A Ddjpeg.c95 JDIMENSION crop_x, crop_y, crop_width, crop_height; variable
393 if (sscanf(argv[argn], "%u%c%u+%u+%u", &crop_width, &c, &crop_height,
395 (c != 'X' && c != 'x') || crop_width < 1 || crop_height < 1)
707 crop_y + crop_height > cinfo.output_height) {
722 cinfo.output_height = crop_height;
728 while (cinfo.output_scanline < crop_y + crop_height) {
733 jpeg_skip_scanlines(&cinfo, cinfo.output_height - crop_y - crop_height);
H A Dtransupp.h136 JDIMENSION crop_height; /* Height of selected region */ member in struct:__anon9749
/external/libvpx/libvpx/test/
H A Dvpx_scale_test.cc76 static void ExtendPlane(uint8_t *buf, int crop_width, int crop_height, argument
85 const int bottom_extend = padding + (height - crop_height);
88 for (int y = 0; y < crop_height; ++y) {
107 uint8_t *bottom = left + (crop_height * stride);
109 memcpy(bottom, left + (crop_height - 1) * stride, extend_width);
/external/opencv3/3rdparty/libwebp/webp/
H A Ddecode.h440 int crop_width, crop_height; // dimension of the cropping area member in struct:WebPDecoderOptions
/external/webp/include/webp/
H A Ddecode.h438 int crop_width, crop_height; // dimension of the cropping area member in struct:WebPDecoderOptions
/external/webp/src/webp/
H A Ddecode.h438 int crop_width, crop_height; // dimension of the cropping area member in struct:WebPDecoderOptions

Completed in 290 milliseconds