From 8d326479a574ea92a39e3c1b8da6fd6ca0fd0697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 12 May 2009 17:18:37 +0100 Subject: [PATCH] audiotestsrc: fix broken enum nick - it should have a hyphen The enum nick should be 'sine-table', not 'sine table'. Technically this is an API/ABI change I guess, but anyone who was using this and didn't report it deserves this. --- gst/audiotestsrc/gstaudiotestsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 111887c706..ca77237ea3 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -132,7 +132,7 @@ gst_audiostestsrc_wave_get_type (void) {GST_AUDIO_TEST_SRC_WAVE_SILENCE, "Silence", "silence"}, {GST_AUDIO_TEST_SRC_WAVE_WHITE_NOISE, "White noise", "white-noise"}, {GST_AUDIO_TEST_SRC_WAVE_PINK_NOISE, "Pink noise", "pink-noise"}, - {GST_AUDIO_TEST_SRC_WAVE_SINE_TAB, "Sine table", "sine table"}, + {GST_AUDIO_TEST_SRC_WAVE_SINE_TAB, "Sine table", "sine-table"}, {GST_AUDIO_TEST_SRC_WAVE_TICKS, "Periodic Ticks", "ticks"}, {0, NULL, NULL}, };