summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2020-07-10 15:13:05 +0100
committerBarnabás Pőcze <pobrn@protonmail.com>2025-02-21 16:02:31 +0100
commitda339be2e066c280e5c420a6aacc49b0569d8c4c (patch)
treedc740910ecfb02f1494e616833caaa77a3d73702 /meson_options.txt
parent32cc6717d26820f55d2e8315ac2300d3a630417c (diff)
libcamera: pipeline: Introduce skeleton Vivid Pipeline
Provide all of the skeleton stubs to succesfully compile and register a new Pipeline Handler for the Vivid test device. Meson must be reconfigured to ensure that this pipeline handler is included in the selected pipelines configuration, and after building, we can test that the PipelineHandler is successfully registered by listing the cameras on the system with LIBCAMERA_LOG_LEVELS enabled: """ LIBCAMERA_LOG_LEVELS=Pipeline:0 ./build-vivid/src/cam/cam -l [230:30:03.624102821] [2867886] DEBUG Pipeline pipeline_handler.cpp:680 Registered pipeline handler "PipelineHandlerVivid" Available cameras: """ Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index f19bca91..9e37da62 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -54,6 +54,7 @@ option('pipelines',
'simple',
'uvcvideo',
'vimc',
+ 'vivid',
'virtual'
],
description : 'Select which pipeline handlers to build. If this is set to "auto", all the pipelines applicable to the target architecture will be built. If this is set to "all", all the pipelines will be built. If both are selected then "all" will take precedence.')