Home
last modified time | relevance | path

Searched refs:aspectRatioPreview (Results 1 – 2 of 2) sorted by relevance

/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DAndroidCamera2Settings.java559 float aspectRatioPreview = previewSize.width() * 1.0f / previewSize.height(); in effectiveCropRectFromRequested() local
562 if (aspectRatioPreview < aspectRatioArray) { in effectiveCropRectFromRequested()
565 cropWidth = cropHeight * aspectRatioPreview; in effectiveCropRectFromRequested()
569 cropHeight = cropWidth / aspectRatioPreview; in effectiveCropRectFromRequested()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DParameterUtils.java500 float aspectRatioPreview = previewSize.getWidth() * 1.0f / previewSize.getHeight(); in getPreviewCropRectangleUnzoomed() local
503 if (Math.abs(aspectRatioPreview - aspectRatioArray) < ASPECT_RATIO_TOLERANCE) { in getPreviewCropRectangleUnzoomed()
506 } else if (aspectRatioPreview < aspectRatioArray) { in getPreviewCropRectangleUnzoomed()
509 cropW = cropH * aspectRatioPreview; in getPreviewCropRectangleUnzoomed()
513 cropH = cropW / aspectRatioPreview; in getPreviewCropRectangleUnzoomed()