summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Plowman <david.plowman@raspberrypi.com>2021-06-28 13:23:23 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-06-28 19:33:47 +0300
commit87998e064d701f6ee910234ae9404af401351afa (patch)
treec22421edef0f61d75c46847cf74315c6d8d526f1 /src
parentbdf04cca086eb72a9e0528ba90a5c53d96e52a01 (diff)
libcamera: ipa: raspberrypi: Demote warnings about lack of AWB results
Warnings about the lack of AWB status results are demoted to being just "Debug". With monochrome sensors becoming more common this would otherwise overwhelm the console output, and in practice nothing is really lost as it is normally very evident if AWB is failing to run. Signed-off-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src')
-rw-r--r--src/ipa/raspberrypi/controller/rpi/agc.cpp2
-rw-r--r--src/ipa/raspberrypi/controller/rpi/alsc.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ipa/raspberrypi/controller/rpi/agc.cpp b/src/ipa/raspberrypi/controller/rpi/agc.cpp
index 1ed578cf..6c3a4eb2 100644
--- a/src/ipa/raspberrypi/controller/rpi/agc.cpp
+++ b/src/ipa/raspberrypi/controller/rpi/agc.cpp
@@ -481,7 +481,7 @@ void Agc::fetchAwbStatus(Metadata *image_metadata)
awb_.gain_g = 1.0;
awb_.gain_b = 1.0;
if (image_metadata->Get("awb.status", awb_) != 0)
- LOG(RPiAgc, Warning) << "Agc: no AWB status found";
+ LOG(RPiAgc, Debug) << "Agc: no AWB status found";
}
static double compute_initial_Y(bcm2835_isp_stats *stats, AwbStatus const &awb,
diff --git a/src/ipa/raspberrypi/controller/rpi/alsc.cpp b/src/ipa/raspberrypi/controller/rpi/alsc.cpp
index 3cdc95a9..be3d1ae4 100644
--- a/src/ipa/raspberrypi/controller/rpi/alsc.cpp
+++ b/src/ipa/raspberrypi/controller/rpi/alsc.cpp
@@ -267,8 +267,8 @@ double get_ct(Metadata *metadata, double default_ct)
AwbStatus awb_status;
awb_status.temperature_K = default_ct; // in case nothing found
if (metadata->Get("awb.status", awb_status) != 0)
- LOG(RPiAlsc, Warning) << "no AWB results found, using "
- << awb_status.temperature_K;
+ LOG(RPiAlsc, Debug) << "no AWB results found, using "
+ << awb_status.temperature_K;
else
LOG(RPiAlsc, Debug) << "AWB results found, using "
<< awb_status.temperature_K;