diff options
author | Jacopo Mondi <jacopo.mondi@ideasonboard.com> | 2024-10-16 11:52:48 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo.mondi@ideasonboard.com> | 2024-10-16 12:06:27 +0200 |
commit | f179fdf73a9c8cc42221e02098623f5840266802 (patch) | |
tree | 2ac14f07c52ee99a3aa510f60108bf58151fcff7 | |
parent | 35fdd26eebef3e73a0e227bab407124cce8917b8 (diff) |
libipa: FCQueue: Fix documentation warning for contexts_
Fix the following documentation warning in libipa:
warning: Member contexts_ (variable) of class libcamera::ipa::FCQueue is
not documented.
Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
-rw-r--r-- | src/ipa/libipa/fc_queue.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ipa/libipa/fc_queue.cpp b/src/ipa/libipa/fc_queue.cpp index 41c563dd..edddd0f6 100644 --- a/src/ipa/libipa/fc_queue.cpp +++ b/src/ipa/libipa/fc_queue.cpp @@ -40,8 +40,8 @@ namespace ipa { /** * \fn FrameContext::init() - * \param[in] frameNum The frame number to assign to this FrameContext * \brief Initialize a frame context + * \param[in] frameNum The frame number to assign to this FrameContext * * This function initializes a frame context by assigning it a frame number. * The single IPA modules are expected to override this function to initialize @@ -145,6 +145,11 @@ namespace ipa { * \return A reference to the FrameContext for sequence \a frame */ +/** + * \var FCQueue::contexts_ + * \brief The list of frame contexts + */ + } /* namespace ipa */ } /* namespace libcamera */ |