summaryrefslogtreecommitdiff
path: root/src/libcamera/ipa_manager.cpp
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2019-10-03 17:20:35 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-10-04 19:02:05 +0300
commit594de3aed3f1e490936db0e982903a85b8cdc36a (patch)
treefdfddae8285f4bbf5ba2c6bcee57cc196c32814a /src/libcamera/ipa_manager.cpp
parent200bb4c60fa4bca408c94e5964f02de496401611 (diff)
ipa: ipa_manager: Print the loaded IPA modules path
Add debug message to report which IPA modules have been loaded and in which order. The loading order is particularly relevant for the test VIMC IPA, as the same IPA is compiled with an open source license tag and a proprietary one and they both match() against the VIMC pipeline handler. Being informed about their loading order is helpful to understand which one of the two is actually in use. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/libcamera/ipa_manager.cpp')
-rw-r--r--src/libcamera/ipa_manager.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcamera/ipa_manager.cpp b/src/libcamera/ipa_manager.cpp
index 27aa1792..f3180c07 100644
--- a/src/libcamera/ipa_manager.cpp
+++ b/src/libcamera/ipa_manager.cpp
@@ -136,6 +136,8 @@ int IPAManager::addDir(const char *libDir)
continue;
}
+ LOG(IPAManager, Debug) << "Loaded IPA module '" << path << "'";
+
modules_.push_back(ipaModule);
count++;
}