summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-09-11 14:50:34 -0700
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-09-11 15:21:33 -0700
commita08019601d9fcd12407c1b3347fa7e05b475d8ea (patch)
tree7c9e3c258b7673d6023ba36d35a9493f980ddb2d
parent9903ac71e91f80ce542a9ca8be0ea3335312b04c (diff)
application-development: dparams: fix range for gstvolume's volume prop
It is not 0 - 4 but 0 - 10 since b8dfedde6a.. From ten years ago.
-rw-r--r--markdown/application-development/advanced/dparams.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/application-development/advanced/dparams.md b/markdown/application-development/advanced/dparams.md
index 42f1100..e948ac0 100644
--- a/markdown/application-development/advanced/dparams.md
+++ b/markdown/application-development/advanced/dparams.md
@@ -85,7 +85,7 @@ gst_timed_value_control_source_set (tv_csource, 1 * GST_SECOND, 1.0);
Now everything is ready to play. If we bound the `GstControlSource` to a volume
property, we will hear a 1 second fade-in. One word of caution: GStreamer's
-stock volume element has a `volume` property with a range from 0.0 to 4.0. If
+stock volume element has a `volume` property with a range from 0.0 to 10.0. If
the above `GstControlSource` is attached to this property the volume will ramp
up to 400%\!