[libcamera-devel] [PATCH v4 26/32] ipa: rkisp1: awb: Store color temperature as an integer

Laurent Pinchart laurent.pinchart at ideasonboard.com
Thu Sep 8 03:41:54 CEST 2022


The color temperature doesn't need floating point precision, and is
calculated by Awb::estimateCCT() as an unsigned integer. Store it with
the same data type in the frame context.

Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
---
 src/ipa/rkisp1/ipa_context.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ipa/rkisp1/ipa_context.h b/src/ipa/rkisp1/ipa_context.h
index c15b908afcc8..53787320e565 100644
--- a/src/ipa/rkisp1/ipa_context.h
+++ b/src/ipa/rkisp1/ipa_context.h
@@ -100,7 +100,7 @@ struct RkISP1FrameContext : public FrameContext {
 			double blue;
 		} gains;
 
-		double temperatureK;
+		unsigned int temperatureK;
 		bool autoEnabled;
 	} awb;
 
-- 
Regards,

Laurent Pinchart



More information about the libcamera-devel mailing list