Home
last modified time | relevance | path

Searched refs:crop_width (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
Dconvert_to_argb.cc37 int crop_width, int crop_height, in ConvertToARGB() argument
61 src_width <= 0 || crop_width <= 0 || in ConvertToARGB()
70 int argb_size = crop_width * abs_crop_height * 4; in ConvertToARGB()
76 argb_stride = crop_width; in ConvertToARGB()
85 crop_width, inv_crop_height); in ConvertToARGB()
91 crop_width, inv_crop_height); in ConvertToARGB()
97 crop_width, inv_crop_height); in ConvertToARGB()
103 crop_width, inv_crop_height); in ConvertToARGB()
109 crop_width, inv_crop_height); in ConvertToARGB()
115 crop_width, inv_crop_height); in ConvertToARGB()
[all …]
Dconvert_to_i420.cc36 int crop_width, int crop_height, in ConvertToI420() argument
59 src_width <= 0 || crop_width <= 0 || in ConvertToI420()
73 int y_size = crop_width * abs_crop_height; in ConvertToI420()
74 int uv_size = ((crop_width + 1) / 2) * ((abs_crop_height + 1) / 2); in ConvertToI420()
82 y_stride = crop_width; in ConvertToI420()
83 u_stride = v_stride = ((crop_width + 1) / 2); in ConvertToI420()
94 crop_width, inv_crop_height); in ConvertToI420()
102 crop_width, inv_crop_height); in ConvertToI420()
110 crop_width, inv_crop_height); in ConvertToI420()
118 crop_width, inv_crop_height); in ConvertToI420()
[all …]
/external/chromium_org/third_party/libyuv/source/
Dconvert_to_argb.cc37 int crop_width, int crop_height, in ConvertToARGB() argument
61 src_width <= 0 || crop_width <= 0 || in ConvertToARGB()
70 int argb_size = crop_width * abs_crop_height * 4; in ConvertToARGB()
76 argb_stride = crop_width; in ConvertToARGB()
85 crop_width, inv_crop_height); in ConvertToARGB()
91 crop_width, inv_crop_height); in ConvertToARGB()
97 crop_width, inv_crop_height); in ConvertToARGB()
103 crop_width, inv_crop_height); in ConvertToARGB()
109 crop_width, inv_crop_height); in ConvertToARGB()
115 crop_width, inv_crop_height); in ConvertToARGB()
[all …]
Dconvert_to_i420.cc36 int crop_width, int crop_height, in ConvertToI420() argument
59 src_width <= 0 || crop_width <= 0 || in ConvertToI420()
73 int y_size = crop_width * abs_crop_height; in ConvertToI420()
74 int uv_size = ((crop_width + 1) / 2) * ((abs_crop_height + 1) / 2); in ConvertToI420()
82 y_stride = crop_width; in ConvertToI420()
83 u_stride = v_stride = ((crop_width + 1) / 2); in ConvertToI420()
94 crop_width, inv_crop_height); in ConvertToI420()
102 crop_width, inv_crop_height); in ConvertToI420()
110 crop_width, inv_crop_height); in ConvertToI420()
118 crop_width, inv_crop_height); in ConvertToI420()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
Dvpx_scale_test.cc77 static void ExtendPlane(uint8_t *buf, int crop_width, int crop_height, in ExtendPlane() argument
84 uint8_t *right = buf + crop_width; in ExtendPlane()
85 const int right_extend = padding + (width - crop_width); in ExtendPlane()
100 const int extend_width = padding + crop_width + right_extend; in ExtendPlane()
/external/chromium_org/third_party/libjpeg_turbo/
Dtransupp.h145 JDIMENSION crop_width; /* Width of selected region */ member
Dtransupp.c806 if (! jt_read_integer(&spec, &info->crop_width)) in jtransform_parse_crop_spec()
989 info->crop_width = info->output_width - info->crop_xoffset; in jtransform_request_workspace()
993 if (info->crop_width <= 0 || info->crop_width > info->output_width || in jtransform_request_workspace()
995 info->crop_xoffset > info->output_width - info->crop_width || in jtransform_request_workspace()
1000 xoffset = info->output_width - info->crop_width - info->crop_xoffset; in jtransform_request_workspace()
1009 info->output_width = info->crop_width; in jtransform_request_workspace()
1012 info->crop_width + (xoffset % info->iMCU_sample_width); in jtransform_request_workspace()
Dturbojpeg.c1239 xinfo[i].crop_width=t[i].r.w; xinfo[i].crop_width_set=JCROP_POS; in tjTransform()
1241 else xinfo[i].crop_width=JCROP_UNSET; in tjTransform()
1286 w=xinfo[i].crop_width; h=xinfo[i].crop_height; in tjTransform()
/external/chromium_org/third_party/libyuv/include/libyuv/
Dconvert_argb.h216 int crop_width, int crop_height,
Dconvert.h245 int crop_width, int crop_height,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
Dconvert_argb.h216 int crop_width, int crop_height,
Dconvert.h245 int crop_width, int crop_height,
/external/chromium_org/third_party/libwebp/webp/
Ddecode.h440 int crop_width, crop_height; // dimension of the cropping area member
/external/webp/include/webp/
Ddecode.h440 int crop_width, crop_height; // dimension of the cropping area member
/external/webp/src/dec/
Dbuffer.c173 const int cw = options->crop_width; in WebPAllocateDecBuffer()
Dwebp.c789 w = options->crop_width; in WebPIoInitFromOptions()
/external/chromium_org/third_party/libwebp/dec/
Dbuffer.c173 const int cw = options->crop_width; in WebPAllocateDecBuffer()
Dwebp.c777 w = options->crop_width; in WebPIoInitFromOptions()
/external/webp/examples/
Ddwebp.c419 config.options.crop_width = strtol(argv[++c], NULL, 0); in main()
/external/skia/src/images/
DSkImageDecoder_libwebp.cpp286 config->options.crop_width = region.width(); in webp_get_config_resize_crop()
/external/chromium_org/third_party/skia/src/images/
DSkImageDecoder_libwebp.cpp275 config->options.crop_width = region.width(); in webp_get_config_resize_crop()