summaryrefslogtreecommitdiff
path: root/gst/adder
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-05-09 22:33:26 +0100
committerTim-Philipp Müller <tim@centricular.com>2015-05-10 11:38:19 +0100
commitec5c93f1690323a0a162f7e1401d4d16c83e4a3d (patch)
tree2c6cdd92ee31e26bf73d17bdc285e195dbff8173 /gst/adder
parentbf683b9a6c08ea126ae1eb810f4fc9c35c83b48b (diff)
docs: update element example pipelines
- gst-launch -> gst-launch-1.0 - use autoaudiosink and audiovideosink more often - review pipeline examples and descriptions
Diffstat (limited to 'gst/adder')
-rw-r--r--gst/adder/gstadder.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gst/adder/gstadder.c b/gst/adder/gstadder.c
index 094b25ee2..0f297d0e8 100644
--- a/gst/adder/gstadder.c
+++ b/gst/adder/gstadder.c
@@ -29,10 +29,14 @@
* The adder currently mixes all data received on the sinkpads as soon as
* possible without trying to synchronize the streams.
*
+ * Check out the audiomixer element in gst-plugins-bad for a better-behaving
+ * audio mixing element: It will sync input streams correctly and also handle
+ * live inputs properly.
+ *
* <refsect2>
* <title>Example launch line</title>
* |[
- * gst-launch audiotestsrc freq=100 ! adder name=mix ! audioconvert ! alsasink audiotestsrc freq=500 ! mix.
+ * gst-launch-1.0 audiotestsrc freq=100 ! adder name=mix ! audioconvert ! autoaudiosink audiotestsrc freq=500 ! mix.
* ]| This pipeline produces two sine waves mixed together.
* </refsect2>
*/