diff --git a/ChangeLog b/ChangeLog index b3a0a4ef44..0d798a0f98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-14 Tim-Philipp Müller + + * gst/playback/gstplaybin.c: + Update max volume to the same value that the volume element uses. + 2006-08-14 Wim Taymans * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open): diff --git a/gst/playback/gstplaybin.c b/gst/playback/gstplaybin.c index ff61ca238e..1bd4308363 100644 --- a/gst/playback/gstplaybin.c +++ b/gst/playback/gstplaybin.c @@ -37,7 +37,7 @@ GST_DEBUG_CATEGORY_STATIC (gst_play_bin_debug); #define GST_IS_PLAY_BIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PLAY_BIN)) #define GST_IS_PLAY_BIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PLAY_BIN)) -#define VOLUME_MAX_DOUBLE 4.0 +#define VOLUME_MAX_DOUBLE 10.0 typedef struct _GstPlayBin GstPlayBin; typedef struct _GstPlayBinClass GstPlayBinClass;