[PATCH v3 10/14] config: Look up pipelines match list in configuration file
Milan Zamazal
mzamazal at redhat.com
Thu Jun 27 16:51:47 CEST 2024
Signed-off-by: Milan Zamazal <mzamazal at redhat.com>
---
src/libcamera/camera_manager.cpp | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/libcamera/camera_manager.cpp b/src/libcamera/camera_manager.cpp
index 7c5e5606..836a7bc9 100644
--- a/src/libcamera/camera_manager.cpp
+++ b/src/libcamera/camera_manager.cpp
@@ -113,14 +113,15 @@ void CameraManager::Private::createPipelineHandlers()
* file and only fallback on environment variable or all handlers, if
* there is no configuration file.
*/
- const char *pipesList =
- utils::secure_getenv("LIBCAMERA_PIPELINES_MATCH_LIST");
- if (pipesList) {
+ std::optional<std::string> pipesList =
+ GlobalConfiguration::envOption("LIBCAMERA_PIPELINES_MATCH_LIST",
+ "pipelines_match_list");
+ if (pipesList.has_value()) {
/*
* When a list of preferred pipelines is defined, iterate
* through the ordered list to match the enumerated devices.
*/
- for (const auto &pipeName : utils::split(pipesList, ",")) {
+ for (const auto &pipeName : utils::split(pipesList.value(), ",")) {
const PipelineHandlerFactoryBase *factory;
factory = PipelineHandlerFactoryBase::getFactoryByName(pipeName);
if (!factory)
--
2.44.1
More information about the libcamera-devel
mailing list