gst/playback/gstplaybin.c: Volume is a double not a float.

Original commit message from CVS:
* gst/playback/gstplaybin.c: (gst_play_bin_get_property):
Volume is a double not a float.
This commit is contained in:
Ronald S. Bultje 2004-09-15 16:48:43 +00:00
parent f20328baad
commit 8c535ea438
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-09-15 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/playback/gstplaybin.c: (gst_play_bin_get_property):
Volume is a double not a float.
2004-09-15 Wim Taymans <wim@fluendo.com>
* gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),

View file

@ -264,7 +264,7 @@ gst_play_bin_get_property (GObject * object, guint prop_id, GValue * value,
g_value_set_object (value, play_bin->visualisation);
break;
case ARG_VOLUME:
g_value_set_float (value, play_bin->volume);
g_value_set_double (value, play_bin->volume);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);