| /* |
| * Copyright (C) 2020 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_SERVERS_CAMERA_SESSION_CONFIGURATION_UTILS_H |
| #define ANDROID_SERVERS_CAMERA_SESSION_CONFIGURATION_UTILS_H |
| |
| #include <android/hardware/camera2/BnCameraDeviceUser.h> |
| #include <android/hardware/camera2/ICameraDeviceCallbacks.h> |
| #include <camera/camera2/OutputConfiguration.h> |
| #include <camera/camera2/SessionConfiguration.h> |
| #include <camera/camera2/SubmitInfo.h> |
| #include <camera/StringUtils.h> |
| #include <aidl/android/hardware/camera/device/ICameraDevice.h> |
| #include <android/hardware/camera/device/3.4/ICameraDeviceSession.h> |
| #include <android/hardware/camera/device/3.7/ICameraDeviceSession.h> |
| |
| #include <device3/Camera3StreamInterface.h> |
| #include <utils/IPCTransport.h> |
| |
| #include <set> |
| #include <stdint.h> |
| |
| #include "SessionConfigurationUtilsHost.h" |
| |
| // Convenience methods for constructing binder::Status objects for error returns |
| |
| #define STATUS_ERROR(errorCode, errorString) \ |
| binder::Status::fromServiceSpecificError(errorCode, \ |
| fmt::sprintf("%s:%d: %s", __FUNCTION__, __LINE__, errorString).c_str()) |
| |
| #define STATUS_ERROR_FMT(errorCode, errorString, ...) \ |
| binder::Status::fromServiceSpecificError(errorCode, \ |
| fmt::sprintf("%s:%d: " errorString, __FUNCTION__, __LINE__, \ |
| __VA_ARGS__).c_str()) |
| |
| namespace android { |
| namespace camera3 { |
| |
| typedef enum camera_request_template { |
| CAMERA_TEMPLATE_PREVIEW = 1, |
| CAMERA_TEMPLATE_STILL_CAPTURE = 2, |
| CAMERA_TEMPLATE_VIDEO_RECORD = 3, |
| CAMERA_TEMPLATE_VIDEO_SNAPSHOT = 4, |
| CAMERA_TEMPLATE_ZERO_SHUTTER_LAG = 5, |
| CAMERA_TEMPLATE_MANUAL = 6, |
| CAMERA_TEMPLATE_COUNT, |
| CAMERA_VENDOR_TEMPLATE_START = 0x40000000 |
| } camera_request_template_t; |
| |
| typedef std::function<CameraMetadata (const std::string &, bool overrideForPerfClass)> |
| metadataGetter; |
| |
| class StreamConfiguration { |
| public: |
| int32_t format; |
| int32_t width; |
| int32_t height; |
| int32_t isInput; |
| static void getStreamConfigurations( |
| const CameraMetadata &static_info, bool maxRes, |
| std::unordered_map<int, std::vector<StreamConfiguration>> *scm); |
| static void getStreamConfigurations( |
| const CameraMetadata &static_info, int configuration, |
| std::unordered_map<int, std::vector<StreamConfiguration>> *scm); |
| }; |
| |
| // Holds the default StreamConfigurationMap and Maximum resolution |
| // StreamConfigurationMap for a camera device. |
| struct StreamConfigurationPair { |
| std::unordered_map<int, std::vector<camera3::StreamConfiguration>> |
| mDefaultStreamConfigurationMap; |
| std::unordered_map<int, std::vector<camera3::StreamConfiguration>> |
| mMaximumResolutionStreamConfigurationMap; |
| }; |
| |
| namespace SessionConfigurationUtils { |
| |
| camera3::Size getMaxJpegResolution(const CameraMetadata &metadata, |
| bool ultraHighResolution); |
| |
| size_t getUHRMaxJpegBufferSize(camera3::Size uhrMaxJpegSize, |
| camera3::Size defaultMaxJpegSize, size_t defaultMaxJpegBufferSize); |
| |
| int64_t euclidDistSquare(int32_t x0, int32_t y0, int32_t x1, int32_t y1); |
| |
| // Find the closest dimensions for a given format in available stream configurations with |
| // a width <= ROUNDING_WIDTH_CAP |
| bool roundBufferDimensionNearest(int32_t width, int32_t height, int32_t format, |
| android_dataspace dataSpace, const CameraMetadata& info, bool maxResolution, |
| /*out*/int32_t* outWidth, /*out*/int32_t* outHeight); |
| |
| // check if format is not custom format |
| bool isPublicFormat(int32_t format); |
| |
| // Create a Surface from an IGraphicBufferProducer. Returns error if |
| // IGraphicBufferProducer's property doesn't match with streamInfo |
| binder::Status createSurfaceFromGbp( |
| camera3::OutputStreamInfo& streamInfo, bool isStreamInfoValid, |
| sp<Surface>& surface, const sp<IGraphicBufferProducer>& gbp, |
| const std::string &logicalCameraId, const CameraMetadata &physicalCameraMetadata, |
| const std::vector<int32_t> &sensorPixelModesUsed, int64_t dynamicRangeProfile, |
| int64_t streamUseCase, int timestampBase, int mirrorMode, |
| int32_t colorSpace); |
| |
| //check if format is 10-bit output compatible |
| bool is10bitCompatibleFormat(int32_t format, android_dataspace_t dataSpace); |
| |
| // check if the dynamic range requires 10-bit output |
| bool is10bitDynamicRangeProfile(int64_t dynamicRangeProfile); |
| |
| // Check if the device supports a given dynamicRangeProfile |
| bool isDynamicRangeProfileSupported(int64_t dynamicRangeProfile, const CameraMetadata& staticMeta); |
| |
| bool deviceReportsColorSpaces(const CameraMetadata& staticMeta); |
| |
| bool isColorSpaceSupported(int32_t colorSpace, int32_t format, android_dataspace dataSpace, |
| int64_t dynamicRangeProfile, const CameraMetadata& staticMeta); |
| |
| bool dataSpaceFromColorSpace(android_dataspace *dataSpace, int32_t colorSpace); |
| |
| bool isStreamUseCaseSupported(int64_t streamUseCase, const CameraMetadata &deviceInfo); |
| |
| void mapStreamInfo(const OutputStreamInfo &streamInfo, |
| camera3::camera_stream_rotation_t rotation, const std::string &physicalId, |
| int32_t groupId, aidl::android::hardware::camera::device::Stream *stream /*out*/); |
| |
| // Check that the physicalCameraId passed in is spported by the camera |
| // device. |
| binder::Status checkPhysicalCameraId( |
| const std::vector<std::string> &physicalCameraIds, const std::string &physicalCameraId, |
| const std::string &logicalCameraId); |
| |
| binder::Status checkSurfaceType(size_t numBufferProducers, |
| bool deferredConsumer, int surfaceType); |
| |
| binder::Status checkOperatingMode(int operatingMode, |
| const CameraMetadata &staticInfo, const std::string &cameraId); |
| |
| binder::Status |
| convertToHALStreamCombination( |
| const SessionConfiguration& sessionConfiguration, |
| const std::string &logicalCameraId, const CameraMetadata &deviceInfo, |
| bool isCompositeJpegRDisabled, metadataGetter getMetadata, |
| const std::vector<std::string> &physicalCameraIds, |
| aidl::android::hardware::camera::device::StreamConfiguration &streamConfiguration, |
| bool overrideForPerfClass, metadata_vendor_id_t vendorTagId, |
| bool checkSessionParams, bool *earlyExit); |
| |
| StreamConfigurationPair getStreamConfigurationPair(const CameraMetadata &metadata); |
| |
| status_t checkAndOverrideSensorPixelModesUsed( |
| const std::vector<int32_t> &sensorPixelModesUsed, int format, int width, int height, |
| const CameraMetadata &staticInfo, |
| std::unordered_set<int32_t> *overriddenSensorPixelModesUsed); |
| |
| bool targetPerfClassPrimaryCamera( |
| const std::set<std::string>& perfClassPrimaryCameraIds, const std::string& cameraId, |
| int32_t targetSdkVersion); |
| |
| // Utility method that maps AIDL request templates. |
| binder::Status mapRequestTemplateFromClient(const std::string& cameraId, int templateId, |
| camera_request_template_t* tempId /*out*/); |
| |
| status_t mapRequestTemplateToAidl(camera_request_template_t templateId, |
| aidl::android::hardware::camera::device::RequestTemplate* tempId /*out*/); |
| |
| void filterParameters(const CameraMetadata& src, const CameraMetadata& deviceInfo, |
| int vendorTagId, CameraMetadata& dst); |
| |
| constexpr int32_t MAX_SURFACES_PER_STREAM = 4; |
| |
| constexpr int32_t ROUNDING_WIDTH_CAP = 1920; |
| |
| constexpr int32_t SDK_VERSION_S = 31; |
| extern int32_t PERF_CLASS_LEVEL; |
| extern bool IS_PERF_CLASS; |
| constexpr int32_t PERF_CLASS_JPEG_THRESH_W = 1920; |
| constexpr int32_t PERF_CLASS_JPEG_THRESH_H = 1080; |
| |
| } // SessionConfigurationUtils |
| } // camera3 |
| } // android |
| |
| #endif |