[libcamera-devel] [PATCH v3 3/5] ipa: libipa: Histogram: Constify the constructor span

Umang Jain umang.jain at ideasonboard.com
Tue Mar 8 09:53:08 CET 2022


Hi JM

On 2/24/22 17:03, Jean-Michel Hautbois wrote:
> The Histogram constructor does not modify the data. Pass it a Span<const
> uint32_t> instead of a Span<uint32_t>.
>
> Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois at ideasonboard.com>


Looks good to me,

Reviewed-by: Umang Jain <umang.jain at ideasonboard.com>

> ---
>   src/ipa/libipa/histogram.cpp | 2 +-
>   src/ipa/libipa/histogram.h   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/ipa/libipa/histogram.cpp b/src/ipa/libipa/histogram.cpp
> index 4d94571f..d8ad1c89 100644
> --- a/src/ipa/libipa/histogram.cpp
> +++ b/src/ipa/libipa/histogram.cpp
> @@ -32,7 +32,7 @@ namespace ipa {
>    * \brief Create a cumulative histogram
>    * \param[in] data A pre-sorted histogram to be passed
>    */
> -Histogram::Histogram(Span<uint32_t> data)
> +Histogram::Histogram(Span<const uint32_t> data)
>   {
>   	cumulative_.reserve(data.size());
>   	cumulative_.push_back(0);
> diff --git a/src/ipa/libipa/histogram.h b/src/ipa/libipa/histogram.h
> index c40a366b..164d4603 100644
> --- a/src/ipa/libipa/histogram.h
> +++ b/src/ipa/libipa/histogram.h
> @@ -22,7 +22,7 @@ namespace ipa {
>   class Histogram
>   {
>   public:
> -	Histogram(Span<uint32_t> data);
> +	Histogram(Span<const uint32_t> data);
>   	size_t bins() const { return cumulative_.size() - 1; }
>   	uint64_t total() const { return cumulative_[cumulative_.size() - 1]; }
>   	uint64_t cumulativeFrequency(double bin) const;


More information about the libcamera-devel mailing list