1/*
2 * Copyright (c) 2023 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16export class Setting {
17  private mirrorBol: boolean; // 镜像使能 -> 关闭
18  private videoStabilizationMode: number; // 视频防抖 -> 关闭
19  private exposureMode: number; // 曝光模式 -> 自动
20  private focusMode: number; // 对焦模式 -> 自动
21  private photoQuality: number; // 拍照质量 -> 中
22  private locationBol: boolean; // 显示地理位置 -> 关闭
23  private photoFormat: number; // 照片格式 -> JPG
24  private photoOrientation: number; // 照片方向 -> 0
25  private photoResolution: number; // 照片分辨率 -> 1920 * 1080
26  private videoResolution: number; // 照片分辨率 -> 1920 * 1080
27  private videoFrame: number; // 录像帧率 -> 15
28  private dividerBol: boolean; // 分割线 -> 关闭
29}
30