/* * Copyright (C) 2024 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ANDROID_COMPANION_VIRTUALCAMERA_VIRTUALCAMERACAPTUREREQUEST_H #define ANDROID_COMPANION_VIRTUALCAMERA_VIRTUALCAMERACAPTUREREQUEST_H #include "VirtualCameraDevice.h" namespace android { namespace companion { namespace virtualcamera { // Struct used to pass request settings in the different part of // the virtual camera system. struct RequestSettings { // JPEG_QUALITY metadata int jpegQuality = VirtualCameraDevice::kDefaultJpegQuality; // JPEG_ORIENTATION metadata int jpegOrientation = VirtualCameraDevice::kDefaultJpegOrientation; // JPEG_THUMBNAIL_SIZE metadata Resolution thumbnailResolution = Resolution(0, 0); // JPEG_THUMBNAIL_QUALITY metadata int thumbnailJpegQuality = VirtualCameraDevice::kDefaultJpegQuality; // ANDROID_CONTROL_AE_TARGET_FPS_RANGE metadata std::optional fpsRange; // CONTROL_CAPTURE_INTENT metadata camera_metadata_enum_android_control_capture_intent_t captureIntent = VirtualCameraDevice::kDefaultCaptureIntent; // JPEG_GPS_LOCATION metadata std::optional gpsCoordinates; // CONTROL_AE_PRECAPTURE_TRIGGER metadata std::optional aePrecaptureTrigger; }; } // namespace virtualcamera } // namespace companion } // namespace android #endif // ANDROID_COMPANION_VIRTUALCAMERA_VIRTUALCAMERACAPTUREREQUEST_H