summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2019-02-19 17:10:52 +0100
committerJacopo Mondi <jacopo@jmondi.org>2019-03-02 18:32:00 +0100
commit3e94f9d7a247376edeacbfc97c7944515c2e147e (patch)
tree533fcd73be2c22d194e4c4111655ae1f5adc9299 /src
parent00889796830bb46a9dbf2029a059dda90287e3db (diff)
libcamera: v4l2_device: Add support for META_CAPTURE devices
Add support for devices that provide video meta-data to v4l2_device.cpp and re-arrange bufferType handling in open() method. Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src')
-rw-r--r--src/libcamera/include/v4l2_device.h26
-rw-r--r--src/libcamera/v4l2_device.cpp70
2 files changed, 76 insertions, 20 deletions
diff --git a/src/libcamera/include/v4l2_device.h b/src/libcamera/include/v4l2_device.h
index 622c9722..5c379fac 100644
--- a/src/libcamera/include/v4l2_device.h
+++ b/src/libcamera/include/v4l2_device.h
@@ -51,13 +51,37 @@ struct V4L2Capability final : v4l2_capability {
bool isCapture() const
{
return device_caps() & (V4L2_CAP_VIDEO_CAPTURE |
- V4L2_CAP_VIDEO_CAPTURE_MPLANE);
+ V4L2_CAP_VIDEO_CAPTURE_MPLANE |
+ V4L2_CAP_META_CAPTURE);
}
bool isOutput() const
{
return device_caps() & (V4L2_CAP_VIDEO_OUTPUT |
V4L2_CAP_VIDEO_OUTPUT_MPLANE);
}
+ bool isVideo() const
+ {
+ return device_caps() & (V4L2_CAP_VIDEO_CAPTURE |
+ V4L2_CAP_VIDEO_CAPTURE_MPLANE |
+ V4L2_CAP_VIDEO_OUTPUT |
+ V4L2_CAP_VIDEO_OUTPUT_MPLANE);
+ }
+ bool isMeta() const
+ {
+ return device_caps() & V4L2_CAP_META_CAPTURE;
+ }
+ bool isVideoCapture() const
+ {
+ return isVideo() && isCapture();
+ }
+ bool isVideoOutput() const
+ {
+ return isVideo() && isOutput();
+ }
+ bool isMetaCapture() const
+ {
+ return isMeta() && isCapture();
+ }
bool hasStreaming() const
{
return device_caps() & V4L2_CAP_STREAMING;
diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp
index e2036aac..581660c9 100644
--- a/src/libcamera/v4l2_device.cpp
+++ b/src/libcamera/v4l2_device.cpp
@@ -69,14 +69,47 @@ LOG_DEFINE_CATEGORY(V4L2)
/**
* \fn bool V4L2Capability::isCapture()
- * \brief Identify if the device is capable of capturing video
- * \return True if the device can capture video frames
+ * \brief Identify if the device captures data
+ * \return True if the device can capture data
*/
/**
* \fn bool V4L2Capability::isOutput()
- * \brief Identify if the device is capable of outputting video
- * \return True if the device can output video frames
+ * \brief Identify if the device outputs data
+ * \return True if the device can output data
+ */
+
+/**
+ * \fn bool V4L2Capability::isVideo()
+ * \brief Identify if the device captures or outputs images
+ * \return True if the device can capture or output images
+ */
+
+/**
+ * \fn bool V4L2Capability::isMeta()
+ * \brief Identify if the device captures or outputs image meta-data
+ *
+ * \todo Add support for META_CAPTURE introduced in Linux v5.0
+ *
+ * \return True if the device can capture or output image meta-data
+ */
+
+/**
+ * \fn bool V4L2Capability::isVideoCapture()
+ * \brief Identify if the device captures images
+ * \return True if the device can capture images
+ */
+
+/**
+ * \fn bool V4L2Capability::isVideoOutput()
+ * \brief Identify if the device outputs images
+ * \return True if the device can output images
+ */
+
+/**
+ * \fn bool V4L2Capability::isMetaCapture()
+ * \brief Identify if the device captures image meta-data
+ * \return True if the device can capture image meta-data
*/
/**
@@ -280,33 +313,32 @@ int V4L2Device::open()
<< "Opened device " << caps_.bus_info() << ": "
<< caps_.driver() << ": " << caps_.card();
- if (!caps_.isCapture() && !caps_.isOutput()) {
- LOG(V4L2, Debug) << "Device is not a supported type";
- return -EINVAL;
- }
-
if (!caps_.hasStreaming()) {
LOG(V4L2, Error) << "Device does not support streaming I/O";
return -EINVAL;
}
- if (caps_.isCapture())
+ /*
+ * Set buffer type and wait for read notifications on CAPTURE devices
+ * (POLLIN), and write notifications for OUTPUT devices (POLLOUT).
+ */
+ if (caps_.isVideoCapture()) {
+ fdEvent_ = new EventNotifier(fd_, EventNotifier::Read);
bufferType_ = caps_.isMultiplanar()
? V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
: V4L2_BUF_TYPE_VIDEO_CAPTURE;
- else
+ } else if (caps_.isVideoOutput()) {
+ fdEvent_ = new EventNotifier(fd_, EventNotifier::Write);
bufferType_ = caps_.isMultiplanar()
? V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
: V4L2_BUF_TYPE_VIDEO_OUTPUT;
-
- /*
- * We wait for Read notifications on CAPTURE devices (POLLIN), and
- * Write notifications for OUTPUT devices (POLLOUT).
- */
- if (caps_.isCapture())
+ } else if (caps_.isMetaCapture()) {
fdEvent_ = new EventNotifier(fd_, EventNotifier::Read);
- else
- fdEvent_ = new EventNotifier(fd_, EventNotifier::Write);
+ bufferType_ = V4L2_BUF_TYPE_META_CAPTURE;
+ } else {
+ LOG(V4L2, Debug) << "Device is not a supported type";
+ return -EINVAL;
+ }
fdEvent_->activated.connect(this, &V4L2Device::bufferAvailable);
fdEvent_->setEnabled(false);