summaryrefslogtreecommitdiff
path: root/src/android/camera_hal_manager.h
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2019-05-10 17:40:02 +0200
committerJacopo Mondi <jacopo@jmondi.org>2019-08-12 11:55:46 +0200
commit667d8ea8fd4bda35e8888792d2b6c055fdb4be18 (patch)
tree786462c9f8dfce3d3d05d69dc8befcd67e94db07 /src/android/camera_hal_manager.h
parent6bed34da161bb8c4e86821116dcff2205e29c58a (diff)
android: hal: Add Camera3 HAL
Add libcamera Android Camera HALv3 implementation. The initial camera HAL implementation supports the LIMITED hardware level and uses statically defined metadata and camera characteristics. Add a build option named 'android' and adjust the build system to selectively compile the Android camera HAL and link it against the required Android libraries. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/android/camera_hal_manager.h')
-rw-r--r--src/android/camera_hal_manager.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/android/camera_hal_manager.h b/src/android/camera_hal_manager.h
new file mode 100644
index 00000000..8004aaf6
--- /dev/null
+++ b/src/android/camera_hal_manager.h
@@ -0,0 +1,47 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * Copyright (C) 2019, Google Inc.
+ *
+ * camera_hal_manager.h - libcamera Android Camera Manager
+ */
+#ifndef __ANDROID_CAMERA_MANAGER_H__
+#define __ANDROID_CAMERA_MANAGER_H__
+
+#include <condition_variable>
+#include <mutex>
+#include <vector>
+
+#include <hardware/hardware.h>
+#include <system/camera_metadata.h>
+
+#include <libcamera/camera_manager.h>
+
+#include "thread.h"
+
+class CameraDevice;
+class CameraProxy;
+
+class CameraHalManager : public libcamera::Thread
+{
+public:
+ int init();
+
+ CameraProxy *open(unsigned int id, const hw_module_t *module);
+ int close(CameraProxy *proxy);
+
+ unsigned int numCameras() const;
+ int getCameraInfo(int id, struct camera_info *info);
+
+private:
+ void run() override;
+ camera_metadata_t *getStaticMetadata(unsigned int id);
+
+ libcamera::CameraManager *cameraManager_;
+
+ std::mutex mutex_;
+ std::condition_variable cv_;
+
+ std::vector<std::unique_ptr<CameraProxy>> proxies_;
+};
+
+#endif /* __ANDROID_CAMERA_MANAGER_H__ */