mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 00:25:07 +03:00
Move the class support infrastructure to the base library. Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
39 lines
826 B
C++
39 lines
826 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2021, Google Inc.
|
|
*
|
|
* camera_hal_config.h - Camera HAL configuration file manager
|
|
*/
|
|
#ifndef __ANDROID_CAMERA_HAL_CONFIG_H__
|
|
#define __ANDROID_CAMERA_HAL_CONFIG_H__
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include <libcamera/base/class.h>
|
|
|
|
struct CameraConfigData {
|
|
int facing = -1;
|
|
int rotation = -1;
|
|
};
|
|
|
|
class CameraHalConfig final : public libcamera::Extensible
|
|
{
|
|
LIBCAMERA_DECLARE_PRIVATE()
|
|
|
|
public:
|
|
CameraHalConfig();
|
|
|
|
bool exists() const { return exists_; }
|
|
bool isValid() const { return valid_; }
|
|
|
|
const CameraConfigData *cameraConfigData(const std::string &cameraId) const;
|
|
|
|
private:
|
|
bool exists_;
|
|
bool valid_;
|
|
std::map<std::string, CameraConfigData> cameras_;
|
|
|
|
int parseConfigurationFile();
|
|
};
|
|
#endif /* __ANDROID_CAMERA_HAL_CONFIG_H__ */
|