From 080cb47e9fb259df96ab24fca09bdc5620ed2087 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sun, 23 Feb 2025 23:12:40 +0200 Subject: ipa: rkisp1: awb: Fix wrong indentation in comment Signed-off-by: Laurent Pinchart Reviewed-by: Stefan Klug --- src/ipa/rkisp1/algorithms/awb.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ipa/rkisp1/algorithms/awb.cpp b/src/ipa/rkisp1/algorithms/awb.cpp index 51c49ba9..3d6737df 100644 --- a/src/ipa/rkisp1/algorithms/awb.cpp +++ b/src/ipa/rkisp1/algorithms/awb.cpp @@ -55,9 +55,9 @@ public: double computeColourError(const RGB &gains) const override { /* - * Compute the sum of the squared colour error (non-greyness) as it - * appears in the log likelihood equation. - */ + * Compute the sum of the squared colour error (non-greyness) as + * it appears in the log likelihood equation. + */ double deltaR = gains.r() * rg_ - 1.0; double deltaB = gains.b() * bg_ - 1.0; double delta2 = deltaR * deltaR + deltaB * deltaB; -- cgit v1.2.1