HomeSort by relevance Sort by last modified time
    Searched refs:crop_height (Results 1 - 25 of 36) sorted by null

1 2

  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3CropRegionMapper.cpp 123 * @crop_height : height of rectangle
128 int32_t& crop_width, int32_t& crop_height)
139 crop_height = crop_height * mActiveArrayH / mSensorH;
141 boundToSize(crop_left, crop_top, crop_width, crop_height,
154 * @crop_height : height of rectangle
160 int32_t& crop_width, int32_t& crop_height)
171 crop_height = crop_height * mSensorH / mActiveArrayH;
174 crop_left, crop_top, crop_width, crop_height);
    [all...]
QCamera3CropRegionMapper.h 48 int32_t& crop_width, int32_t& crop_height);
50 int32_t& crop_width, int32_t& crop_height);
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3CropRegionMapper.cpp 119 * @crop_height : height of rectangle
124 int32_t& crop_width, int32_t& crop_height)
135 crop_height = crop_height * mActiveArrayH / mSensorH;
137 boundToSize(crop_left, crop_top, crop_width, crop_height,
150 * @crop_height : height of rectangle
156 int32_t& crop_width, int32_t& crop_height)
167 crop_height = crop_height * mSensorH / mActiveArrayH;
170 __func__, crop_left, crop_top, crop_width, crop_height);
    [all...]
QCamera3CropRegionMapper.h 49 int32_t& crop_width, int32_t& crop_height);
51 int32_t& crop_width, int32_t& crop_height);
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3CropRegionMapper.cpp 119 * @crop_height : height of rectangle
124 int32_t& crop_width, int32_t& crop_height)
135 crop_height = crop_height * mActiveArrayH / mSensorH;
137 boundToSize(crop_left, crop_top, crop_width, crop_height,
150 * @crop_height : height of rectangle
156 int32_t& crop_width, int32_t& crop_height)
167 crop_height = crop_height * mSensorH / mActiveArrayH;
170 __func__, crop_left, crop_top, crop_width, crop_height);
    [all...]
QCamera3CropRegionMapper.h 49 int32_t& crop_width, int32_t& crop_height);
51 int32_t& crop_width, int32_t& crop_height);
  /external/webrtc/webrtc/tools/barcode_tools/
yuv_cropper.py 25 planes (Y, U, V) of the YUV file plus the crop_height scaled for every
26 plane. The sizes equal width, height and crop_height for the Y plane,
27 and are equal to width/2, height/2 and crop_height/2 for the U and V
41 # Only write the plane data for the rows bigger than crop_height.
47 def crop_frames(yuv_file_name, output_file_name, width, height, crop_height):
50 This function goes through all the frames in a video and crops the crop_height
59 crop_height(int): The height (the number of pixel rows) to be cropped from
63 component_sizes = [(width, height, crop_height),
64 (width/2, height/2, crop_height/2),
65 (width/2, height/2, crop_height/2)
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
VideoPayloadBuffer.h 62 uint32_t crop_height; member in struct:android::intel::VideoPayloadBuffer
RotationBufferProvider.cpp 225 if (payload->crop_width && payload->crop_height) {
227 height = (payload->crop_height >> mBobDeinterlace);
231 payload->crop_height = height;
524 payload->height = payload->crop_height = h;
VideoPayloadManager.cpp 54 metadata->normalBuffer.height = p->crop_height;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
VideoPayloadBuffer.h 62 uint32_t crop_height; member in struct:android::intel::VideoPayloadBuffer
RotationBufferProvider.cpp 224 if (payload->crop_width && payload->crop_height) {
226 height = (payload->crop_height >> mBobDeinterlace);
230 payload->crop_height = height;
519 payload->height = payload->crop_height = h;
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_to_argb.cc 36 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) {
convert_to_i420.cc 35 int crop_width, int crop_height,
43 // TODO(nisse): Why allow crop_height < 0?
44 const int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height;
61 src_height == 0 || crop_height == 0) {
  /external/libyuv/files/source/
convert_to_argb.cc 41 int crop_height,
49 int inv_crop_height = (crop_height < 0) ? -crop_height : crop_height;
62 int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height;
65 crop_width <= 0 || src_height == 0 || crop_height == 0) {
convert_to_i420.cc 41 int crop_height,
49 // TODO(nisse): Why allow crop_height < 0?
50 const int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height;
67 src_height == 0 || crop_height == 0) {
  /external/libvpx/libvpx/test/
vpx_scale_test.cc 74 static void ExtendPlane(uint8_t *buf, int crop_width, int crop_height,
83 const int bottom_extend = padding + (height - crop_height);
86 for (int y = 0; y < crop_height; ++y) {
105 uint8_t *bottom = left + (crop_height * stride);
107 memcpy(bottom, left + (crop_height - 1) * stride, extend_width);
  /external/libjpeg-turbo/
transupp.h 137 JDIMENSION crop_height; /* Height of selected region */ member in struct:__anon23399
djpeg.c 97 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)
709 crop_y + crop_height > cinfo.output_height) {
724 cinfo.output_height = crop_height;
730 while (cinfo.output_scanline < crop_y + crop_height) {
735 jpeg_skip_scanlines(&cinfo, cinfo.output_height - crop_y - crop_height);
transupp.c     [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/
resource_default.cpp 572 float crop_height = crop->bottom - crop->top; local
617 crop_top += crop_height * top_cut_ratio;
619 crop_bottom -= crop_height * bottom_cut_ratio;
669 float crop_height = crop.bottom - crop.top; local
673 if ((UINT32(crop_width - dst_width) == 1) || (UINT32(crop_height - dst_height) == 1)) {
675 "crop_h = %.0f, dst_h = %.0f", crop_width, dst_width, crop_height, dst_height);
775 float crop_height = crop.bottom - crop.top; local
780 *scale_y = crop_height / dst_height;
  /hardware/qcom/display/msm8998/sdm/libs/core/
resource_default.cpp 609 float crop_height = crop->bottom - crop->top; local
654 crop_top += crop_height * top_cut_ratio;
656 crop_bottom -= crop_height * bottom_cut_ratio;
706 float crop_height = crop.bottom - crop.top; local
710 if ((UINT32(crop_width - dst_width) == 1) || (UINT32(crop_height - dst_height) == 1)) {
712 "crop_h = %.0f, dst_h = %.0f", crop_width, dst_width, crop_height, dst_height);
813 float crop_height = crop.bottom - crop.top; local
818 *scale_y = crop_height / dst_height;
  /hardware/intel/img/psb_video/src/android/
psb_surface_gralloc.c 449 obj_surface->share_info->crop_height = obj_surface->share_info->height;
452 obj_surface->share_info->crop_height = driver_data->render_rect.height;
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
convert.h 237 // "crop_width" / "crop_height" is the size to crop the src to.
250 int crop_width, int crop_height,
convert_argb.h 299 // "crop_width" / "crop_height" is the size to crop the src to.
310 int crop_width, int crop_height,

Completed in 521 milliseconds

1 2