mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
volume: include "1.0=100%" in property description
This commit is contained in:
parent
aab2e110a1
commit
c1f46ea29e
2 changed files with 2 additions and 2 deletions
|
@ -728,7 +728,7 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
|
|||
GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
g_object_class_install_property (gobject_klass, PROP_VOLUME,
|
||||
g_param_spec_double ("volume", "Volume", "The audio volume",
|
||||
g_param_spec_double ("volume", "Volume", "The audio volume, 1.0=100%",
|
||||
0.0, VOLUME_MAX_DOUBLE, 1.0,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
g_object_class_install_property (gobject_klass, PROP_MUTE,
|
||||
|
|
|
@ -428,7 +428,7 @@ gst_volume_class_init (GstVolumeClass * klass)
|
|||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
g_object_class_install_property (gobject_class, PROP_VOLUME,
|
||||
g_param_spec_double ("volume", "Volume", "volume factor",
|
||||
g_param_spec_double ("volume", "Volume", "volume factor, 1.0=100%",
|
||||
0.0, VOLUME_MAX_DOUBLE, DEFAULT_PROP_VOLUME,
|
||||
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
|
|
Loading…
Reference in a new issue