summaryrefslogtreecommitdiff
path: root/src/libcamera/ipa_module.cpp
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@ideasonboard.com>2019-06-05 16:47:23 -0400
committerPaul Elder <paul.elder@ideasonboard.com>2019-07-02 23:18:03 +0900
commit83e3300a2df2360b69760614084826793c64e769 (patch)
treeae255ee565892fab158bf44471d6650a9f20a94a /src/libcamera/ipa_module.cpp
parent0c2f97a0aba1fc144a33a4769e0b96373bb26318 (diff)
libcamera: ipa_module: add path getter
Add a method to IPAModule to get the path of the IPA module shared object that the IPAModule was constructed from. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/libcamera/ipa_module.cpp')
-rw-r--r--src/libcamera/ipa_module.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libcamera/ipa_module.cpp b/src/libcamera/ipa_module.cpp
index 2663b9ef..58e8d1d8 100644
--- a/src/libcamera/ipa_module.cpp
+++ b/src/libcamera/ipa_module.cpp
@@ -322,6 +322,19 @@ const struct IPAModuleInfo &IPAModule::info() const
}
/**
+ * \brief Retrieve the IPA module path
+ *
+ * The IPA module path is the file name and path of the IPA module shared
+ * object from which the IPA module was created.
+ *
+ * \return The IPA module path
+ */
+const std::string &IPAModule::path() const
+{
+ return libPath_;
+}
+
+/**
* \brief Load the IPA implementation factory from the shared object
*
* The IPA module shared object implements an IPAInterface class to be used