diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2021-10-27 13:03:53 +0100 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2021-10-27 14:31:49 +0100 |
commit | 0a1aaa8d55cdd2530f41e70242dc8ea9a3b46577 (patch) | |
tree | 5767017b8f20c61a6bd6d843782afa3b735a1c74 /src | |
parent | 4d4694cd9f4ea73586dcb75d19905a1860356d9f (diff) |
libcamera: v4l2_videodevice: provide hasMediaController()
The V4L2Capability has helpers to interogate the capabilities
of a device.
V4L2VideoDevice::enumPixelformats accesses the raw capabilites to check
if the device is supported by a MediaController device.
Provide a helper, and update the usage.
Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/v4l2_videodevice.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libcamera/v4l2_videodevice.cpp b/src/libcamera/v4l2_videodevice.cpp index 0cc622f9..4f04212d 100644 --- a/src/libcamera/v4l2_videodevice.cpp +++ b/src/libcamera/v4l2_videodevice.cpp @@ -141,6 +141,12 @@ LOG_DECLARE_CATEGORY(V4L2) */ /** + * \fn V4L2Capability::hasMediaController() + * \brief Determine if the video device uses Media Controller to configure I/O + * \return True if the video device is controlled by a Media Controller device + */ + +/** * \class V4L2BufferCache * \brief Hot cache of associations between V4L2 buffer indexes and FrameBuffer * @@ -1019,7 +1025,7 @@ std::vector<V4L2PixelFormat> V4L2VideoDevice::enumPixelformats(uint32_t code) std::vector<V4L2PixelFormat> formats; int ret; - if (code && !(caps_.device_caps() & V4L2_CAP_IO_MC)) { + if (code && !caps_.hasMediaController()) { LOG(V4L2, Error) << "Media bus code filtering not supported by the device"; return {}; |