OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:aspectratiopreview
(Results
1 - 2
of
2
) sorted by null
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCamera2Settings.java
559
float
aspectRatioPreview
= previewSize.width() * 1.0f / previewSize.height();
562
if (
aspectRatioPreview
< aspectRatioArray) {
565
cropWidth = cropHeight *
aspectRatioPreview
;
569
cropHeight = cropWidth /
aspectRatioPreview
;
/frameworks/base/core/java/android/hardware/camera2/legacy/
ParameterUtils.java
500
float
aspectRatioPreview
= previewSize.getWidth() * 1.0f / previewSize.getHeight();
503
if (Math.abs(
aspectRatioPreview
- aspectRatioArray) < ASPECT_RATIO_TOLERANCE) {
506
} else if (
aspectRatioPreview
< aspectRatioArray) {
509
cropW = cropH *
aspectRatioPreview
;
513
cropH = cropW /
aspectRatioPreview
;
[
all
...]
Completed in 149 milliseconds