mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 09:38:17 +00:00
real fix thise time : don't use glib 2.4 specific defines
Original commit message from CVS: real fix thise time : don't use glib 2.4 specific defines
This commit is contained in:
parent
ca58ea6c4e
commit
2eed99edbf
2 changed files with 5 additions and 7 deletions
|
@ -34,8 +34,8 @@
|
||||||
|
|
||||||
* ext/vorbis/vorbisdec.c : sign warning fixes
|
* ext/vorbis/vorbisdec.c : sign warning fixes
|
||||||
|
|
||||||
* gst-libs/gst/mixer/mixertrack.c : forgoten include
|
* gst-libs/gst/mixer/mixertrack.c :
|
||||||
to define newly used G_MAXINT32, bad owen, bad
|
do no use defines which are glib 2.4 specific
|
||||||
|
|
||||||
2004-06-01 Christophe Fergeau <teuf@gnome.org>
|
2004-06-01 Christophe Fergeau <teuf@gnome.org>
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <glib.h>
|
|
||||||
|
|
||||||
#include "mixertrack.h"
|
#include "mixertrack.h"
|
||||||
|
|
||||||
enum
|
enum
|
||||||
|
@ -98,18 +96,18 @@ gst_mixer_track_class_init (GstMixerTrackClass * klass)
|
||||||
|
|
||||||
g_object_class_install_property (object_klass, ARG_MIN_VOLUME,
|
g_object_class_install_property (object_klass, ARG_MIN_VOLUME,
|
||||||
g_param_spec_int ("min_volume", "Minimum volume level",
|
g_param_spec_int ("min_volume", "Minimum volume level",
|
||||||
"The minimum possible volume level", G_MININT32, G_MAXINT,
|
"The minimum possible volume level", G_MININT, G_MAXINT,
|
||||||
0, G_PARAM_READABLE));
|
0, G_PARAM_READABLE));
|
||||||
|
|
||||||
g_object_class_install_property (object_klass, ARG_MAX_VOLUME,
|
g_object_class_install_property (object_klass, ARG_MAX_VOLUME,
|
||||||
g_param_spec_int ("max_volume", "Maximum volume level",
|
g_param_spec_int ("max_volume", "Maximum volume level",
|
||||||
"The maximum possible volume level", G_MININT32, G_MAXINT,
|
"The maximum possible volume level", G_MININT, G_MAXINT,
|
||||||
0, G_PARAM_READABLE));
|
0, G_PARAM_READABLE));
|
||||||
|
|
||||||
g_object_class_install_property (object_klass, ARG_FLAGS,
|
g_object_class_install_property (object_klass, ARG_FLAGS,
|
||||||
g_param_spec_uint ("flags", "Flags",
|
g_param_spec_uint ("flags", "Flags",
|
||||||
"Flags indicating the type of mixer track",
|
"Flags indicating the type of mixer track",
|
||||||
0, G_MAXUINT32, 0, G_PARAM_READABLE));
|
0, G_MAXUINT, 0, G_PARAM_READABLE));
|
||||||
|
|
||||||
g_object_class_install_property (object_klass, ARG_NUM_CHANNELS,
|
g_object_class_install_property (object_klass, ARG_NUM_CHANNELS,
|
||||||
g_param_spec_int ("num_channels", "Number of channels",
|
g_param_spec_int ("num_channels", "Number of channels",
|
||||||
|
|
Loading…
Reference in a new issue