From 70239887e869f011ffa2b235422103d5fc626df3 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 6 Oct 2011 18:20:32 +0100 Subject: [PATCH] audiotestsrc: add missing break And make violet noise usable https://bugzilla.gnome.org/show_bug.cgi?id=661105 --- gst/audiotestsrc/gstaudiotestsrc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 0304b8ade6..78a5d6b6ea 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -1004,6 +1004,7 @@ gst_audio_test_src_change_wave (GstAudioTestSrc * src) src->gen = g_rand_new (); src->red.state = 0.0; src->process = violet_noise_funcs[src->format]; + break; default: GST_ERROR ("invalid wave-form"); break;