/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2019, Google Inc. * * camera_hal_manager.h - libcamera Android Camera Manager */ #pragma once #include #include #include #include #include #include #include #include #include #include #include "camera_hal_config.h" class CameraDevice; class CameraHalManager { public: ~CameraHalManager(); static CameraHalManager *instance(); int init(); std::tuple open(unsigned int id, const hw_module_t *module); unsigned int numCameras() const; int getCameraInfo(unsigned int id, struct camera_info *info); void setCallbacks(const camera_module_callbacks_t *callbacks); private: LIBCAMERA_DISABLE_COPY_AND_MOVE(CameraHalManager) static constexpr unsigned int firstExternalCameraId_ = 1000; CameraHalManager(); static int32_t cameraLocation(const libcamera::Camera *cam); void cameraAdded(std::shared_ptr cam); void cameraRemoved(std::shared_ptr cam); CameraDevice *cameraDeviceFromHalId(unsigned int id) LIBCAMERA_TSA_REQUIRES(mutex_); std::unique_ptr cameraManager_; CameraHalConfig halConfig_; const camera_module_callbacks_t *callbacks_; std::vector> cameras_ LIBCAMERA_TSA_GUARDED_BY(mutex_); std::map cameraIdsMap_ LIBCAMERA_TSA_GUARDED_BY(mutex_); libcamera::Mutex mutex_; unsigned int numInternalCameras_; unsigned int nextExternalCameraId_; }; e' href='/libcamera/kbingham/libcamera.git/tree/include/libcamera/internal/device_enumerator_sysfs.h?id=ef5f5c4db05e5d88d58b0d565f7716c59751b991'>treecommitdiff
blob: 2112bc543054be80efe21b87d2ef9c341bd02d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32