Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authoribauer <iljabauer@gmail.com>2015-10-08 11:32:32 +0300
committerTim-Philipp Müller <tim@centricular.com>2020-07-10 18:45:16 +0300
commita3de294cb5ebe3aec26c7a6611c258273b7a6915 (patch)
tree6b76abbb884b70f109a0eadc041a2e324aa12d54 /sys
parente97b50af51b9e607ef48882bc1c813b9fd2cc3bc (diff)
rpicamsrc: Changed awb-gain-blue use the correct enum PROP_AWB_GAIN_BLUE and not PROP_AWB_GAIN_RED
Diffstat (limited to 'sys')
-rw-r--r--sys/rpicamsrc/gstrpicamsrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/rpicamsrc/gstrpicamsrc.c b/sys/rpicamsrc/gstrpicamsrc.c
index 8272188e0..1afd6e0b8 100644
--- a/sys/rpicamsrc/gstrpicamsrc.c
+++ b/sys/rpicamsrc/gstrpicamsrc.c
@@ -345,7 +345,7 @@ gst_rpi_cam_src_class_init (GstRpiCamSrcClass * klass)
g_param_spec_float ("awb-gain-red", "AWB Red Gain",
"Manual AWB Gain for red channel when awb-mode=off", 0, 8.0, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- g_object_class_install_property (gobject_class, PROP_AWB_GAIN_RED,
+ g_object_class_install_property (gobject_class, PROP_AWB_GAIN_BLUE,
g_param_spec_float ("awb-gain-blue", "AWB Blue Gain",
"Manual AWB Gain for blue channel when awb-mode=off", 0, 8.0, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));