diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-05-09 02:18:52 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-06-17 15:04:02 +0300 |
commit | 3faa04fe48b394e0c73056183293a5b77116e539 (patch) | |
tree | 4f13450d91e7a356d9caa7bbafed4104a91e5f68 /src/ipa/libipa/agc_mean_luminance.h | |
parent | 8fd673deaf9beb2e9be9c81342f728c2b7b0513a (diff) |
ipa: libipa: agc_mean_luminance: Fix enumerator names
Enumerators in libcamera start with an upper case letter. Fix the
AgcConstraint::Bound enumerators.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Diffstat (limited to 'src/ipa/libipa/agc_mean_luminance.h')
-rw-r--r-- | src/ipa/libipa/agc_mean_luminance.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipa/libipa/agc_mean_luminance.h b/src/ipa/libipa/agc_mean_luminance.h index 0a81c6d2..d1bddda5 100644 --- a/src/ipa/libipa/agc_mean_luminance.h +++ b/src/ipa/libipa/agc_mean_luminance.h @@ -31,8 +31,8 @@ public: struct AgcConstraint { enum class Bound { - lower = 0, - upper = 1 + Lower = 0, + Upper = 1 }; Bound bound; double qLo; |