diff options
author | Barnabás Pőcze <barnabas.pocze@ideasonboard.com> | 2025-04-01 15:45:15 +0200 |
---|---|---|
committer | Barnabás Pőcze <barnabas.pocze@ideasonboard.com> | 2025-04-02 17:41:14 +0200 |
commit | 61d93434f5830cc9b1e057db2834fc2a64622f21 (patch) | |
tree | d44d3df69c9c52c49bf5718f461f11556a39edc3 | |
parent | 66fc6d26567c8f16dbcae4fa09b5afff8b2ff554 (diff) |
gstreamer: Restore `AeEnable` control
Commit "gstreamer: Generate the new AEGC controls" removed the
`AeEnable` control from gen-gst-controls.py. However, the patch
set it was part of did not end up removing the `AeEnable`
control after all. So restore it for gstreamer users.
See 85cb179f289d29 ("controls: Redefine AeEnable").
Fixes: 187f2d537be5a4 ("gstreamer: Generate the new AEGC controls")
Signed-off-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rwxr-xr-x | utils/codegen/gen-gst-controls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/codegen/gen-gst-controls.py b/utils/codegen/gen-gst-controls.py index 07af7653..4ca76049 100755 --- a/utils/codegen/gen-gst-controls.py +++ b/utils/codegen/gen-gst-controls.py @@ -19,7 +19,7 @@ from controls import Control exposed_controls = [ - 'AeMeteringMode', 'AeConstraintMode', 'AeExposureMode', + 'AeEnable', 'AeMeteringMode', 'AeConstraintMode', 'AeExposureMode', 'ExposureValue', 'ExposureTime', 'ExposureTimeMode', 'AnalogueGain', 'AnalogueGainMode', 'AeFlickerPeriod', 'Brightness', 'Contrast', 'AwbEnable', 'AwbMode', 'ColourGains', |