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 defaultHdrImageOutputFormat: ImageOutputFormat = ImageOutputFormat.JPEG_ULTRA_HDR,
33 val lowLightBoost: LowLightBoost = LowLightBoost.DISABLED,
34 val zoomScale: Float = 1f,
35 val targetFrameRate: Int = TARGET_FPS_AUTO,
36 val imageFormat: ImageOutputFormat = ImageOutputFormat.JPEG,
37 val audioMuted: Boolean = false,
38 val deviceRotation: DeviceRotation = DeviceRotation.Natural,
39 val concurrentCameraMode: ConcurrentCameraMode = ConcurrentCameraMode.OFF
40 )
41
SystemConstraintsnull42 fun SystemConstraints.forCurrentLens(cameraAppSettings: CameraAppSettings): CameraConstraints? {
43 return perLensConstraints[cameraAppSettings.cameraLensFacing]
44 }
45
46 val DEFAULT_CAMERA_APP_SETTINGS = CameraAppSettings()
47