diff options
Diffstat (limited to 'src/libcamera/ipa_module.cpp')
-rw-r--r-- | src/libcamera/ipa_module.cpp | 13 |
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 |