diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-05-25 13:16:20 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-05-27 16:07:01 +0300 |
commit | c3515cf6e57bf4016f84c1228f26bf7dc69027e1 (patch) | |
tree | 369ef9a4736f596968fb98b9214dacc314672dd8 /include | |
parent | b50718928dcfdd1e6fb890a0230614eb9aa38111 (diff) |
libcamera: ipa: Move IPA control serialization structures to libcamera namespace
The C structures used to serialize controls are currently defined in the
root namespace, which places them at the root level in the class list
generated by Doxygen. Move them to the libcamera namespace to fix that.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/ipa/ipa_controls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libcamera/ipa/ipa_controls.h b/include/libcamera/ipa/ipa_controls.h index da1a7596..e5da1946 100644 --- a/include/libcamera/ipa/ipa_controls.h +++ b/include/libcamera/ipa/ipa_controls.h @@ -10,6 +10,8 @@ #include <stdint.h> #ifdef __cplusplus +namespace libcamera { + extern "C" { #endif @@ -48,5 +50,7 @@ struct ipa_control_info_entry { }; #ifdef __cplusplus +} /* namespace libcamera */ + } #endif |