HomeSort by relevance Sort by last modified time
    Searched refs:cropWidth (Results 1 - 10 of 10) sorted by null

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 205 int cropWidth = original.getWidth();
209 if (forceCropToSquare && cropWidth != cropHeight) {
211 if (cropHeight > cropWidth) {
212 cropTop = (cropHeight - cropWidth) / 2;
213 cropHeight = cropWidth;
215 cropLeft = (cropWidth - cropHeight) / 2;
216 cropWidth = cropHeight;
220 final float scaleFactor = Math.min(1f, ((float) maxDim) / Math.max(cropWidth, cropHeight));
223 final int newWidth = (int) (cropWidth * scaleFactor);
234 cropLeft + cropWidth, cropTop + cropHeight)
    [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 71 size_t ColorConverter::BitmapParams::cropWidth() const {
142 && src.cropWidth() == dst.cropWidth()
154 for (size_t x = 0; x < src.cropWidth(); x += 2) {
185 if (x + 1 < src.cropWidth()) {
202 && src.cropWidth() == dst.cropWidth()
223 for (size_t x = 0; x < src.cropWidth(); x += 2) {
273 if (x + 1 < src.cropWidth()) {
298 && src.cropWidth() == dst.cropWidth(
    [all...]
  /device/lge/mako/camera/inc/
omx_jpeg_ext.h 94 int cropWidth;
  /frameworks/av/include/media/stagefright/
ColorConverter.h 54 size_t cropWidth() const;
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 478 int cropWidth = Math.min(width, height) * 4 / 5;
479 int cropHeight = cropWidth;
483 cropHeight = cropWidth * mAspectY / mAspectX;
485 cropWidth = cropHeight * mAspectX / mAspectY;
489 int x = (width - cropWidth) / 2;
492 RectF cropRect = new RectF(x, y, x + cropWidth, y + cropHeight);
  /frameworks/base/core/java/android/app/
WallpaperManager.java 552 float cropWidth = outWidth * (inHeight / (float) outHeight);
553 cropRect.left = (inWidth - cropWidth) * horizontalAlignment;
554 cropRect.right = cropRect.left + cropWidth;
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 559 final int cropWidth = mCropRect.right - mCropRect.left;
560 final float scaleWidth = CROPPED_SIZE / cropWidth;
561 final float scaleHeight = CROPPED_SIZE / cropWidth;
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_omx_jpeg_encoder.c 597 thumbnail.cropWidth = CEILING2(encode_params->dimension->thumbnail_width);
603 thumbnail.cropWidth = CEILING2(encode_params->scaling_params->in1_w);
  /device/lge/mako/camera/QCamera/stack/mm-jpeg-interface/src/
mm_jpeg.c 311 thumbnail.cropWidth = CEILING2(src_buf->crop.width);
    [all...]

Completed in 1543 milliseconds