Searched refs:crop_width (Results 1 - 18 of 18) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_to_argb.cc36 int crop_width, int crop_height,
60 src_width <= 0 || crop_width <= 0 ||
69 int argb_size = crop_width * 4 * abs_crop_height;
75 argb_stride = crop_width * 4;
84 crop_width, inv_crop_height);
90 crop_width, inv_crop_height);
96 crop_width, inv_crop_height);
102 crop_width, inv_crop_height);
108 crop_width, inv_crop_height);
114 crop_width, inv_crop_heigh
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
[all...]
H A Dconvert_to_i420.cc35 int crop_width, int crop_height,
60 src_width <= 0 || crop_width <= 0 ||
71 int y_size = crop_width * abs_crop_height;
72 int uv_size = ((crop_width + 1) / 2) * ((abs_crop_height + 1) / 2);
80 y_stride = crop_width;
81 u_stride = v_stride = ((crop_width + 1) / 2);
92 crop_width, inv_crop_height);
100 crop_width, inv_crop_height);
108 crop_width, inv_crop_height);
116 crop_width, inv_crop_heigh
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
[all...]
/external/libyuv/files/source/
H A Dconvert_to_argb.cc40 int crop_width,
65 crop_width <= 0 || src_height == 0 || crop_height == 0) {
73 int argb_size = crop_width * 4 * abs_crop_height;
79 argb_stride = crop_width * 4;
87 crop_width, inv_crop_height);
92 crop_width, inv_crop_height);
96 r = RGB24ToARGB(src, src_width * 3, crop_argb, argb_stride, crop_width,
101 r = RAWToARGB(src, src_width * 3, crop_argb, argb_stride, crop_width,
107 r = ARGBToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width,
113 r = BGRAToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width,
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
[all...]
H A Dconvert_to_i420.cc40 int crop_width,
66 if (!y || !u || !v || !sample || src_width <= 0 || crop_width <= 0 ||
77 int y_size = crop_width * abs_crop_height;
78 int uv_size = ((crop_width + 1) / 2) * ((abs_crop_height + 1) / 2);
86 y_stride = crop_width;
87 u_stride = v_stride = ((crop_width + 1) / 2);
95 v_stride, crop_width, inv_crop_height);
100 v_stride, crop_width, inv_crop_height);
105 v_stride, crop_width, inv_crop_height);
110 v_stride, crop_width, inv_crop_heigh
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
[all...]
/external/libjpeg-turbo/
H A Dtransupp.h135 JDIMENSION crop_width; /* Width of selected region */ member in struct:__anon10765
H A Ddjpeg.c97 JDIMENSION crop_x, crop_y, crop_width, crop_height; variable
395 if (sscanf(argv[argn], "%u%c%u+%u+%u", &crop_width, &c, &crop_height,
397 (c != 'X' && c != 'x') || crop_width < 1 || crop_height < 1)
708 if (crop_x + crop_width > cinfo.output_width ||
715 jpeg_crop_scanline(&cinfo, &crop_x, &crop_width);
H A Dtransupp.c807 if (! jt_read_integer(&spec, &info->crop_width))
990 info->crop_width = info->output_width - info->crop_xoffset;
994 if (info->crop_width <= 0 || info->crop_width > info->output_width ||
996 info->crop_xoffset > info->output_width - info->crop_width ||
1001 xoffset = info->output_width - info->crop_width - info->crop_xoffset;
1010 info->output_width = info->crop_width;
1013 info->crop_width + (xoffset % info->iMCU_sample_width);
H A Dturbojpeg.c2050 xinfo[i].crop_width=t[i].r.w; xinfo[i].crop_width_set=JCROP_POS;
2052 else xinfo[i].crop_width=JCROP_UNSET;
2097 w=xinfo[i].crop_width; h=xinfo[i].crop_height;
/external/libvpx/libvpx/test/
H A Dvpx_scale_test.cc74 static void ExtendPlane(uint8_t *buf, int crop_width, int crop_height, argument
81 uint8_t *right = buf + crop_width;
82 const int right_extend = padding + (width - crop_width);
97 const int extend_width = padding + crop_width + right_extend;
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dconvert.h237 // "crop_width" / "crop_height" is the size to crop the src to.
250 int crop_width, int crop_height,
H A Dconvert_argb.h299 // "crop_width" / "crop_height" is the size to crop the src to.
310 int crop_width, int crop_height,
/external/libyuv/files/include/libyuv/
H A Dconvert.h337 // "crop_width" / "crop_height" is the size to crop the src to.
356 int crop_width,
H A Dconvert_argb.h429 // "crop_width" / "crop_height" is the size to crop the src to.
444 int crop_width,
/external/webp/include/webp/
H A Ddecode.h441 int crop_width, crop_height; // dimension of the cropping area member in struct:WebPDecoderOptions
/external/webp/src/webp/
H A Ddecode.h441 int crop_width, crop_height; // dimension of the cropping area member in struct:WebPDecoderOptions
/external/skia/src/codec/
H A DSkWebpCodec.cpp261 config.options.crop_width = subsetWidth;
/external/webp/src/dec/
H A Dbuffer_dec.c181 const int cw = options->crop_width;
H A Dwebp_dec.c795 w = options->crop_width;

Completed in 609 milliseconds