[libcamera-devel] [PATCH 2/2] ipa: ipu3: Tidy-up includes

Umang Jain umang.jain at ideasonboard.com
Thu Jul 22 08:37:05 CEST 2021


Hi Jacopo,

On 7/16/21 8:02 PM, Jacopo Mondi wrote:
> Tidy-up a bit the inclusions directive in the IPU3 IPA module.
>
> In detail:
> - ipu3.cpp is missing inclusions for:
>    std::abs from <cmath>
>    std::map from <map>
>    std::min/max from <algorithm>
>    std::numeric_limits from <limits>
>    std::unique_ptr from <memory>
>    std::vector from <vector>
>
>    and does not require <sys/mman.h>
>
> - ipu3_agc has two not used inclusions in the header file and one the cpp file
>    and is missing <chrono> for std::literals::chrono_literals

The <chrono> comes from <libcamera/base/utils.h> included in ipu3_agc.h, 
since we use `Duration` wrapper in class IPU3Agc. Should be again 
including the header in ipu3_agc.cpp for chrono_literals?


>
> - ipu3_awb is missing <algorithm> for std::sort and does not use
>    <numeric> or <unordered_map>
>
> Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>

Rest good looks so,

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

> ---
>   src/ipa/ipu3/ipu3.cpp     | 7 ++++++-
>   src/ipa/ipu3/ipu3_agc.cpp | 2 +-
>   src/ipa/ipu3/ipu3_agc.h   | 3 ---
>   src/ipa/ipu3/ipu3_awb.cpp | 3 +--
>   4 files changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/src/ipa/ipu3/ipu3.cpp b/src/ipa/ipu3/ipu3.cpp
> index d3c69bc07bd0..dc22acd4fd08 100644
> --- a/src/ipa/ipu3/ipu3.cpp
> +++ b/src/ipa/ipu3/ipu3.cpp
> @@ -5,10 +5,15 @@
>    * ipu3.cpp - IPU3 Image Processing Algorithms
>    */
>   
> +#include <algorithm>
>   #include <array>
> +#include <cmath>
> +#include <limits>
> +#include <map>
> +#include <memory>
>   #include <stdint.h>
> -#include <sys/mman.h>
>   #include <utility>
> +#include <vector>
>   
>   #include <linux/intel-ipu3.h>
>   #include <linux/v4l2-controls.h>
> diff --git a/src/ipa/ipu3/ipu3_agc.cpp b/src/ipa/ipu3/ipu3_agc.cpp
> index 6253ab94cff1..408eb849b428 100644
> --- a/src/ipa/ipu3/ipu3_agc.cpp
> +++ b/src/ipa/ipu3/ipu3_agc.cpp
> @@ -8,8 +8,8 @@
>   #include "ipu3_agc.h"
>   
>   #include <algorithm>
> +#include <chrono>
>   #include <cmath>
> -#include <numeric>
>   
>   #include <libcamera/base/log.h>
>   
> diff --git a/src/ipa/ipu3/ipu3_agc.h b/src/ipa/ipu3/ipu3_agc.h
> index 3deca3ae6933..9f3d4257d945 100644
> --- a/src/ipa/ipu3/ipu3_agc.h
> +++ b/src/ipa/ipu3/ipu3_agc.h
> @@ -7,9 +7,6 @@
>   #ifndef __LIBCAMERA_IPU3_AGC_H__
>   #define __LIBCAMERA_IPU3_AGC_H__
>   
> -#include <array>
> -#include <unordered_map>
> -
>   #include <linux/intel-ipu3.h>
>   
>   #include <libcamera/base/utils.h>
> diff --git a/src/ipa/ipu3/ipu3_awb.cpp b/src/ipa/ipu3/ipu3_awb.cpp
> index 9b409c8ffad9..4bb321b377a2 100644
> --- a/src/ipa/ipu3/ipu3_awb.cpp
> +++ b/src/ipa/ipu3/ipu3_awb.cpp
> @@ -6,9 +6,8 @@
>    */
>   #include "ipu3_awb.h"
>   
> +#include <algorithm>
>   #include <cmath>
> -#include <numeric>
> -#include <unordered_map>
>   
>   #include <libcamera/base/log.h>
>   


More information about the libcamera-devel mailing list