From 3a9a60327653808e9754419ee29bf429891123ac Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Wed, 8 Mar 2017 15:01:13 -0300 Subject: [PATCH] docs: Port all docstring to gtk-doc markdown --- gst/audiomixer/gstaudiointerleave.c | 6 +++--- gst/audiomixer/gstaudiomixer.c | 15 ++++----------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/gst/audiomixer/gstaudiointerleave.c b/gst/audiomixer/gstaudiointerleave.c index f4e9fa1073..8d99b3ce13 100644 --- a/gst/audiomixer/gstaudiointerleave.c +++ b/gst/audiomixer/gstaudiointerleave.c @@ -27,7 +27,7 @@ */ /** * SECTION:element-audiointerleave - * + * @title: audiointerleave * */ @@ -593,7 +593,7 @@ gst_audio_interleave_class_init (GstAudioInterleaveClass * klass) /** * GstInterleave:channel-positions - * + * * Channel positions: This property controls the channel positions * that are used on the src caps. The number of elements should be * the same as the number of sink pads and the array should contain @@ -617,7 +617,7 @@ gst_audio_interleave_class_init (GstAudioInterleaveClass * klass) /** * GstInterleave:channel-positions-from-input - * + * * Channel positions from input: If this property is set to %TRUE the channel * positions will be taken from the input caps if valid channel positions for * the output can be constructed from them. If this is set to %TRUE setting the diff --git a/gst/audiomixer/gstaudiomixer.c b/gst/audiomixer/gstaudiomixer.c index de539db828..ac2f49c04b 100644 --- a/gst/audiomixer/gstaudiomixer.c +++ b/gst/audiomixer/gstaudiomixer.c @@ -23,6 +23,7 @@ */ /** * SECTION:element-audiomixer + * @title: audiomixer * * The audiomixer allows to mix several streams into one by adding the data. * Mixed data is clamped to the min/max values of the data format. @@ -32,21 +33,13 @@ * The input pads are from a GstPad subclass and have additional * properties to mute each pad individually and set the volume: * - * - * - * "mute": Whether to mute the pad or not (#gboolean) - * - * - * "volume": The volume of the pad, between 0.0 and 10.0 (#gdouble) - * - * + * * "mute": Whether to mute the pad or not (#gboolean) + * * "volume": The volume of the pad, between 0.0 and 10.0 (#gdouble) * - * - * Example launch line + * ## Example launch line * |[ * gst-launch-1.0 audiotestsrc freq=100 ! audiomixer name=mix ! audioconvert ! alsasink audiotestsrc freq=500 ! mix. * ]| This pipeline produces two sine waves mixed together. - * * */