From 133e7bab32f22770ce58fed0a00d608499557416 Mon Sep 17 00:00:00 2001 From: Ravi Kiran K N Date: Fri, 30 Oct 2015 10:05:37 +0530 Subject: [PATCH] audiochebband: Fix typo in example pipeline Fix typo in example pipeline. https://bugzilla.gnome.org/show_bug.cgi?id=757340 --- gst/audiofx/audiochebband.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/audiofx/audiochebband.c b/gst/audiofx/audiochebband.c index d295009272..78febe9e34 100644 --- a/gst/audiofx/audiochebband.c +++ b/gst/audiofx/audiochebband.c @@ -59,7 +59,7 @@ * * Example launch line * |[ - * gst-launch-1.0 audiotestsrc freq=1500 ! audioconvert ! audiochebband mode=band-pass lower-frequency=1000 upper-frequenc=6000 poles=4 ! audioconvert ! alsasink + * gst-launch-1.0 audiotestsrc freq=1500 ! audioconvert ! audiochebband mode=band-pass lower-frequency=1000 upper-frequency=6000 poles=4 ! audioconvert ! alsasink * gst-launch-1.0 filesrc location="melo1.ogg" ! oggdemux ! vorbisdec ! audioconvert ! audiochebband mode=band-reject lower-frequency=1000 upper-frequency=4000 ripple=0.2 ! audioconvert ! alsasink * gst-launch-1.0 audiotestsrc wave=white-noise ! audioconvert ! audiochebband mode=band-pass lower-frequency=1000 upper-frequency=4000 type=2 ! audioconvert ! alsasink * ]|