HomeSort by relevance Sort by last modified time
    Searched defs:aspectRatioTolerance (Results 1 - 2 of 2) sorted by null

  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraImpl.java 731 Double aspectRatioTolerance = sCaptureImageFormat == ImageFormat.RAW_SENSOR ? 10d : null;
733 pictureAspectRatio, aspectRatioTolerance);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 504 final double aspectRatioTolerance = 0.02;
506 return getOptimalPreviewSizeIndex(sizes, targetRatio, aspectRatioTolerance);
516 * @param aspectRatioTolerance the tolerance we allow between the selected
523 List<Size> previewSizes, double targetRatio, Double aspectRatioTolerance) {
530 if (aspectRatioTolerance == null) {
548 if (Math.abs(ratio - targetRatio) > aspectRatioTolerance) {
    [all...]

Completed in 887 milliseconds