• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2023 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.google.jetpackcamera.settings.model
17 const val TARGET_FPS_AUTO = 0
18 
19 /**
20  * Data layer representation for settings.
21  */
22 data class CameraAppSettings(
23     val cameraLensFacing: LensFacing = LensFacing.BACK,
24     val darkMode: DarkMode = DarkMode.SYSTEM,
25     val flashMode: FlashMode = FlashMode.OFF,
26     val captureMode: CaptureMode = CaptureMode.MULTI_STREAM,
27     val aspectRatio: AspectRatio = AspectRatio.NINE_SIXTEEN,
28     val previewStabilization: Stabilization = Stabilization.UNDEFINED,
29     val videoCaptureStabilization: Stabilization = Stabilization.UNDEFINED,
30     val dynamicRange: DynamicRange = DynamicRange.SDR,
31     val defaultHdrDynamicRange: DynamicRange = DynamicRange.HLG10,
32     val zoomScale: Float = 1f,
33     val targetFrameRate: Int = TARGET_FPS_AUTO
34 )
35 
SystemConstraintsnull36 fun SystemConstraints.forCurrentLens(cameraAppSettings: CameraAppSettings): CameraConstraints? {
37     return perLensConstraints[cameraAppSettings.cameraLensFacing]
38 }
39 
40 val DEFAULT_CAMERA_APP_SETTINGS = CameraAppSettings()
41