diff options
author | Jacopo Mondi <jacopo.mondi@ideasonboard.com> | 2023-08-08 13:34:50 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo.mondi@ideasonboard.com> | 2023-08-08 14:34:28 +0200 |
commit | 7e1ff7441363c59c659023a3b1e66ea01aca236d (patch) | |
tree | 520020ad184b2a83d31f2f827ff8ce8c33cf9bb3 /src | |
parent | 2855c178b0457405f3b8bb6dfa4c7ebd0450b652 (diff) |
libcamera: device_enumerator: Search for USB devices
Add support for searching a USBDevice by providing a USBDeviceMatch
to the device enumerator.
Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/libcamera/device_enumerator.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/libcamera/device_enumerator.cpp b/src/libcamera/device_enumerator.cpp index 1fde7367..0d983032 100644 --- a/src/libcamera/device_enumerator.cpp +++ b/src/libcamera/device_enumerator.cpp @@ -271,4 +271,18 @@ std::shared_ptr<MediaDevice> DeviceEnumerator::search(const MediaDeviceMatch &dm return nullptr; } +std::shared_ptr<USBDevice> DeviceEnumerator::search(const USBDeviceMatch &dm) +{ + for (std::shared_ptr<USBDevice> &usb : usbDevices_) { + if (dm.match(usb.get())) { + LOG(DeviceEnumerator, Debug) + << "Successful match for USB device " + << usb->vid() << "-" << usb->pid(); + return usb; + } + } + + return nullptr; +} + } /* namespace libcamera */ |