[libcamera-devel,v1,4/4] ipa: rkisp1: Downgrade sensor controls range message to Debug
diff mbox series

Message ID 20221019110434.17767-5-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • ipa: Fill metadata in individual algorithms
Related show

Commit Message

Laurent Pinchart Oct. 19, 2022, 11:04 a.m. UTC
There's no need to print the exposure and gain control ranges as an Info
message. Downgrade it to Debug. While at it, print the ranges using the
"[min, max]" syntax.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 src/ipa/rkisp1/rkisp1.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Kieran Bingham Oct. 19, 2022, 11:42 a.m. UTC | #1
Quoting Laurent Pinchart via libcamera-devel (2022-10-19 12:04:34)
> There's no need to print the exposure and gain control ranges as an Info
> message. Downgrade it to Debug. While at it, print the ranges using the
> "[min, max]" syntax.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
>  src/ipa/rkisp1/rkisp1.cpp | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
> index bef5211d5c34..7dd340cf50af 100644
> --- a/src/ipa/rkisp1/rkisp1.cpp
> +++ b/src/ipa/rkisp1/rkisp1.cpp
> @@ -232,9 +232,9 @@ int IPARkISP1::configure([[maybe_unused]] const IPACameraSensorInfo &info,
>         int32_t minGain = itGain->second.min().get<int32_t>();
>         int32_t maxGain = itGain->second.max().get<int32_t>();
>  
> -       LOG(IPARkISP1, Info)
> -               << "Exposure: " << minExposure << "-" << maxExposure
> -               << " Gain: " << minGain << "-" << maxGain;
> +       LOG(IPARkISP1, Debug)
> +               << "Exposure: [" << minExposure << ", " << maxExposure
> +               << "], gain: [" << minGain << ", " << maxGain << "]";


Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

>  
>         /* Clear the IPA context before the streaming session. */
>         context_.configuration = {};
> -- 
> Regards,
> 
> Laurent Pinchart
>
Jacopo Mondi Oct. 19, 2022, 11:49 a.m. UTC | #2
Hi Laurent

On Wed, Oct 19, 2022 at 12:42:35PM +0100, Kieran Bingham via libcamera-devel wrote:
> Quoting Laurent Pinchart via libcamera-devel (2022-10-19 12:04:34)
> > There's no need to print the exposure and gain control ranges as an Info
> > message. Downgrade it to Debug. While at it, print the ranges using the
> > "[min, max]" syntax.
> >
> > Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>

Thanks
  j

> > ---
> >  src/ipa/rkisp1/rkisp1.cpp | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
> > index bef5211d5c34..7dd340cf50af 100644
> > --- a/src/ipa/rkisp1/rkisp1.cpp
> > +++ b/src/ipa/rkisp1/rkisp1.cpp
> > @@ -232,9 +232,9 @@ int IPARkISP1::configure([[maybe_unused]] const IPACameraSensorInfo &info,
> >         int32_t minGain = itGain->second.min().get<int32_t>();
> >         int32_t maxGain = itGain->second.max().get<int32_t>();
> >
> > -       LOG(IPARkISP1, Info)
> > -               << "Exposure: " << minExposure << "-" << maxExposure
> > -               << " Gain: " << minGain << "-" << maxGain;
> > +       LOG(IPARkISP1, Debug)
> > +               << "Exposure: [" << minExposure << ", " << maxExposure
> > +               << "], gain: [" << minGain << ", " << maxGain << "]";
>
>
> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
>
> >
> >         /* Clear the IPA context before the streaming session. */
> >         context_.configuration = {};
> > --
> > Regards,
> >
> > Laurent Pinchart
> >

Patch
diff mbox series

diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
index bef5211d5c34..7dd340cf50af 100644
--- a/src/ipa/rkisp1/rkisp1.cpp
+++ b/src/ipa/rkisp1/rkisp1.cpp
@@ -232,9 +232,9 @@  int IPARkISP1::configure([[maybe_unused]] const IPACameraSensorInfo &info,
 	int32_t minGain = itGain->second.min().get<int32_t>();
 	int32_t maxGain = itGain->second.max().get<int32_t>();
 
-	LOG(IPARkISP1, Info)
-		<< "Exposure: " << minExposure << "-" << maxExposure
-		<< " Gain: " << minGain << "-" << maxGain;
+	LOG(IPARkISP1, Debug)
+		<< "Exposure: [" << minExposure << ", " << maxExposure
+		<< "], gain: [" << minGain << ", " << maxGain << "]";
 
 	/* Clear the IPA context before the streaming session. */
 	context_.configuration = {};