diff options
author | Milan Zamazal <mzamazal@redhat.com> | 2024-10-02 18:48:01 +0200 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2024-10-03 14:44:03 +0100 |
commit | a7d573df53ff2fe2edaaf4c11a269f12b1a9e305 (patch) | |
tree | 563d8c4d4cc006256fcdb5a1118f8161d6405191 | |
parent | e879a86979ab368cd3744bd82fdc7c3013685f0f (diff) |
libcamera: software_isp: Improve wording in a comment
A minor wording improvement suggested on refactoring review.
Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | src/ipa/simple/algorithms/agc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/simple/algorithms/agc.cpp b/src/ipa/simple/algorithms/agc.cpp index 783dfb8b..df92edd7 100644 --- a/src/ipa/simple/algorithms/agc.cpp +++ b/src/ipa/simple/algorithms/agc.cpp @@ -29,7 +29,7 @@ static constexpr unsigned int kExposureBinsCount = 5; static constexpr float kExposureOptimal = kExposureBinsCount / 2.0; /* - * The below value implements the hysteresis for the exposure adjustment. + * This implements the hysteresis for the exposure adjustment. * It is small enough to have the exposure close to the optimal, and is big * enough to prevent the exposure from wobbling around the optimal value. */ |