summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-10-27 15:58:03 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-10-27 15:58:03 +0000
commitb96b8a0815e3b18112129537e07dc13d54fd60bb (patch)
tree91755991d440ba7ff2675dd80bbcddfb771914b4
parentc892fc6b20a22b9622832d0a23986b72c80f1995 (diff)
downloadgstreamer-plugins-base-b96b8a0815e3b18112129537e07dc13d54fd60bb.tar.gz
standardize samplerate
Original commit message from CVS: standardize samplerate
-rw-r--r--ext/vorbis/vorbisdec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/vorbis/vorbisdec.c b/ext/vorbis/vorbisdec.c
index 544128717..fcaf69ab8 100644
--- a/ext/vorbis/vorbisdec.c
+++ b/ext/vorbis/vorbisdec.c
@@ -52,7 +52,7 @@ enum
ARG_VENDOR,
ARG_VERSION,
ARG_CHANNELS,
- ARG_RATE,
+ ARG_SAMPLERATE,
ARG_BITRATE_UPPER,
ARG_BITRATE_NOMINAL,
ARG_BITRATE_LOWER,
@@ -116,8 +116,8 @@ gst_vorbisdec_class_init (VorbisDecClass * klass)
g_object_class_install_property (gobject_class, ARG_CHANNELS,
g_param_spec_int ("channels", "Channels", "The number of channels",
0, G_MAXINT, 0, G_PARAM_READABLE));
- g_object_class_install_property (gobject_class, ARG_RATE,
- g_param_spec_int ("rate", "Rate", "The samplerate",
+ g_object_class_install_property (gobject_class, ARG_SAMPLERATE,
+ g_param_spec_int ("samplerate", "Sample Rate", "The samplerate",
0, G_MAXINT, 0, G_PARAM_READABLE));
g_object_class_install_property (gobject_class, ARG_BITRATE_UPPER,
g_param_spec_int ("bitrate_upper", "bitrate_upper", "bitrate_upper",
@@ -527,7 +527,7 @@ gst_vorbisdec_get_property (GObject *object, guint prop_id, GValue *value, GPara
case ARG_CHANNELS:
g_value_set_int (value, vorbisdec->vi.channels);
break;
- case ARG_RATE:
+ case ARG_SAMPLERATE:
g_value_set_int (value, vorbisdec->vi.rate);
break;
case ARG_BITRATE_UPPER: