diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-10-08 17:29:44 +0200 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-11-13 11:47:06 +0100 |
commit | 6d9baefca8a7e8d7e74dcd03e6cd06a30f2c1601 (patch) | |
tree | 0ba6680fec00424d9a9dbca9965e9c94ce6fed2a /src/ipa/libipa/histogram.cpp | |
parent | f328b61f663a5a0d4842807a55ed8a7567a07c26 (diff) |
ipa: libipa: Add data accessor to Histogram
For debugging purposes it is helpful to access the internal data of the
histogram. Add an accessor for that.
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/ipa/libipa/histogram.cpp')
-rw-r--r-- | src/ipa/libipa/histogram.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ipa/libipa/histogram.cpp b/src/ipa/libipa/histogram.cpp index 5fbfadf5..10e44b54 100644 --- a/src/ipa/libipa/histogram.cpp +++ b/src/ipa/libipa/histogram.cpp @@ -63,6 +63,12 @@ Histogram::Histogram(Span<const uint32_t> data) */ /** + * \fn Histogram::data() + * \brief Retrieve the internal data + * \return The data + */ + +/** * \fn Histogram::total() * \brief Retrieve the total number of values in the data set * \return Number of values |