summaryrefslogtreecommitdiff
path: root/gst/audiotestsrc
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-11-22 17:39:29 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-11-22 17:39:29 +0000
commitc0759093ebcec8fb8f237150b9a3213864079d70 (patch)
tree7cd361f1320fa40d5b5c64b00c73ae3a385ebdda /gst/audiotestsrc
parent9559eb697d62187d28d66939e7c07f2b0d4eee07 (diff)
remove deprecated properties fix up enums to correctly have short lowercase dashed nicks
Original commit message from CVS: remove deprecated properties fix up enums to correctly have short lowercase dashed nicks
Diffstat (limited to 'gst/audiotestsrc')
-rw-r--r--gst/audiotestsrc/gstaudiotestsrc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c
index 6750a94dc..64b40e61a 100644
--- a/gst/audiotestsrc/gstaudiotestsrc.c
+++ b/gst/audiotestsrc/gstaudiotestsrc.c
@@ -95,13 +95,13 @@ gst_audiostestsrc_wave_get_type (void)
{
static GType audiostestsrc_wave_type = 0;
static GEnumValue audiostestsrc_waves[] = {
- {GST_AUDIOTESTSRC_WAVE_SINE, "0", "Sine"},
- {GST_AUDIOTESTSRC_WAVE_SQUARE, "1", "Square"},
- {GST_AUDIOTESTSRC_WAVE_SAW, "2", "Saw"},
- {GST_AUDIOTESTSRC_WAVE_TRIANGLE, "3", "Triangle"},
- {GST_AUDIOTESTSRC_WAVE_SILENCE, "4", "Silence"},
- {GST_AUDIOTESTSRC_WAVE_WHITE_NOISE, "5", "White noise"},
- {GST_AUDIOTESTSRC_WAVE_PINK_NOISE, "6", "Pink noise"},
+ {GST_AUDIOTESTSRC_WAVE_SINE, "Sine", "sine"},
+ {GST_AUDIOTESTSRC_WAVE_SQUARE, "Square", "square"},
+ {GST_AUDIOTESTSRC_WAVE_SAW, "Saw", "saw"},
+ {GST_AUDIOTESTSRC_WAVE_TRIANGLE, "Triangle", "triangle"},
+ {GST_AUDIOTESTSRC_WAVE_SILENCE, "Silence", "silence"},
+ {GST_AUDIOTESTSRC_WAVE_WHITE_NOISE, "White noise", "white-noise"},
+ {GST_AUDIOTESTSRC_WAVE_PINK_NOISE, "Pink noise", "pink-noise"},
{0, NULL, NULL},
};