summaryrefslogtreecommitdiff
path: root/src/libcamera/include/v4l2_subdevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/include/v4l2_subdevice.h')
-rw-r--r--src/libcamera/include/v4l2_subdevice.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/libcamera/include/v4l2_subdevice.h b/src/libcamera/include/v4l2_subdevice.h
new file mode 100644
index 00000000..8fd66607
--- /dev/null
+++ b/src/libcamera/include/v4l2_subdevice.h
@@ -0,0 +1,51 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * Copyright (C) 2019, Google Inc.
+ *
+ * v4l2_subdevice.h - V4L2 Subdevice
+ */
+#ifndef __LIBCAMERA_V4L2_SUBDEVICE_H__
+#define __LIBCAMERA_V4L2_SUBDEVICE_H__
+
+#include <string>
+
+namespace libcamera {
+
+struct Rectangle;
+
+struct V4L2SubdeviceFormat {
+ uint32_t mbus_code;
+ uint32_t width;
+ uint32_t height;
+};
+
+class V4L2Subdevice
+{
+public:
+ explicit V4L2Subdevice(const MediaEntity *entity);
+ V4L2Subdevice(const V4L2Subdevice &) = delete;
+ V4L2Subdevice &operator=(const V4L2Subdevice &) = delete;
+
+ int open();
+ bool isOpen() const;
+ void close();
+
+ std::string deviceNode() const { return deviceNode_; }
+
+ int setCrop(unsigned int pad, Rectangle *rect);
+ int setCompose(unsigned int pad, Rectangle *rect);
+
+ int getFormat(unsigned int pad, V4L2SubdeviceFormat *format);
+ int setFormat(unsigned int pad, V4L2SubdeviceFormat *format);
+
+private:
+ int setSelection(unsigned int pad, unsigned int target,
+ Rectangle *rect);
+
+ std::string deviceNode_;
+ int fd_;
+};
+
+} /* namespace libcamera */
+
+#endif /* __LIBCAMERA_V4L2_SUBDEVICE_H__ */