summaryrefslogtreecommitdiff
path: root/src/apps/lc-compliance/helpers/capture.h
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo.mondi@ideasonboard.com>2023-12-23 12:12:07 +0100
committerJacopo Mondi <jacopo.mondi@ideasonboard.com>2023-12-29 11:33:30 +0100
commitc4820aff083050d60b92db4ca4c1c894c3756c93 (patch)
tree3dfa28b9c49274a754d4051b91e6dcada51a48de /src/apps/lc-compliance/helpers/capture.h
parentcf4512ffe1b71bf08eb463e09e90faccefb12fc1 (diff)
apps: lc-compliance: Support multiple streams in helpers
Prepare to add a test suite for capture operations with multiple streams. Modify the Capture helper class to support multiple roles and streams in the configure() and capture() operations. Multi-stream support will be added in next patches. Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Diffstat (limited to 'src/apps/lc-compliance/helpers/capture.h')
-rw-r--r--src/apps/lc-compliance/helpers/capture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apps/lc-compliance/helpers/capture.h b/src/apps/lc-compliance/helpers/capture.h
index 0574ab1c..3e2b2889 100644
--- a/src/apps/lc-compliance/helpers/capture.h
+++ b/src/apps/lc-compliance/helpers/capture.h
@@ -16,7 +16,7 @@
class Capture
{
public:
- void configure(libcamera::StreamRole role);
+ void configure(libcamera::Span<const libcamera::StreamRole> roles);
protected:
Capture(std::shared_ptr<libcamera::Camera> camera);