diff options
author | Paul Elder <paul.elder@ideasonboard.com> | 2019-05-10 19:09:29 -0400 |
---|---|---|
committer | Paul Elder <paul.elder@ideasonboard.com> | 2019-05-21 18:31:37 -0400 |
commit | c1bbbd3b5b4706a31a7505fdd9ad65786764e2d7 (patch) | |
tree | a7324253b1bc1d621b61be3e0c68f7a8600b5498 /Documentation | |
parent | 06387039d6f59f8cb1829edfc09d2d9c8b33d62c (diff) |
libcamera: ipa_module: add IPA shared library module
Implement a class to wrap around an IPA module shared object.
For now, just load a struct IPAModuleInfo with symbol name
ipaModuleInfo from an IPA module .so shared object.
Also provide a public header file including the struct IPAModuleInfo,
structured such that both C and C++ IPA modules are supported.
Signed-off-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Doxyfile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in index 381f7771..67eadede 100644 --- a/Documentation/Doxyfile.in +++ b/Documentation/Doxyfile.in @@ -2056,7 +2056,8 @@ INCLUDE_FILE_PATTERNS = *.h # recursively expanded use the := operator instead of the = operator. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -PREDEFINED = __DOXYGEN__ +PREDEFINED = __DOXYGEN__ \ + __cplusplus # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this # tag can be used to specify a list of macro names that should be expanded. The |