summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Kiran K N <ravi.kiran@samsung.com>2015-10-30 10:05:37 +0530
committerTim-Philipp Müller <tim@centricular.com>2015-10-30 20:20:12 +0000
commit133e7bab32f22770ce58fed0a00d608499557416 (patch)
treeb0314dc5a49ad9a225e6e902d1184eaf028e0805
parent5f720cc3cbf8588d0d3e64c8973ec4d44f343c9f (diff)
audiochebband: Fix typo in example pipeline
Fix typo in example pipeline. https://bugzilla.gnome.org/show_bug.cgi?id=757340
-rw-r--r--gst/audiofx/audiochebband.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audiofx/audiochebband.c b/gst/audiofx/audiochebband.c
index d29500927..78febe9e3 100644
--- a/gst/audiofx/audiochebband.c
+++ b/gst/audiofx/audiochebband.c
@@ -59,7 +59,7 @@
* <refsect2>
* <title>Example launch line</title>
* |[
- * 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
* ]|