diff options
Diffstat (limited to 'gst/interleave/interleave.c')
-rw-r--r-- | gst/interleave/interleave.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gst/interleave/interleave.c b/gst/interleave/interleave.c index 0ca2ea6c..bce077d7 100644 --- a/gst/interleave/interleave.c +++ b/gst/interleave/interleave.c @@ -22,6 +22,23 @@ * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-interleave + * + * <refsect2> + * <para> + * Merges separate mono inputs into one interleaved stream. + * </para> + * <title>Example launch line</title> + * <para> + * <programlisting> + * gst-launch-0.10 filesrc location=song.ogg ! decodebin ! audioconvert ! ladspa-gverb name=g ! interleave name=i ! audioconvert ! autoaudiosink g. ! i. + * </programlisting> + * Apply ladspa gverb to the music and merge separate left/right outputs into a + * stereo stream for playback. + * </para> + * </refsect2> + */ #ifdef HAVE_CONFIG_H # include "config.h" |