diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-02-23 23:12:40 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-02-24 18:22:38 +0200 |
commit | afd87c342c96e5f6f1c378105d07a1d90802194c (patch) | |
tree | 454bf996ab02a98650f2cbe84923c3fd343b6332 /src/ipa/libipa/awb_grey.cpp | |
parent | 080cb47e9fb259df96ab24fca09bdc5620ed2087 (diff) |
libipa: awb: Rename AwbStats::getRGBMeans() to rgbMeans()
The convention in libcamera is not to prefix getters with a 'get'
prefix. Rename the AwbStats::getRGBMeans() function accordingly.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
Diffstat (limited to 'src/ipa/libipa/awb_grey.cpp')
-rw-r--r-- | src/ipa/libipa/awb_grey.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/libipa/awb_grey.cpp b/src/ipa/libipa/awb_grey.cpp index e979cc4d..17b85984 100644 --- a/src/ipa/libipa/awb_grey.cpp +++ b/src/ipa/libipa/awb_grey.cpp @@ -73,7 +73,7 @@ int AwbGrey::init(const YamlObject &tuningData) AwbResult AwbGrey::calculateAwb(const AwbStats &stats, [[maybe_unused]] unsigned int lux) { AwbResult result; - auto means = stats.getRGBMeans(); + auto means = stats.rgbMeans(); result.colourTemperature = estimateCCT(means); /* |