summaryrefslogtreecommitdiff
path: root/ext/openal
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@osg.samsung.com>2017-03-08 15:01:13 -0300
committerThibault Saunier <thibault.saunier@osg.samsung.com>2017-04-12 12:57:57 -0300
commit78022a6e0c05ce482b798cf638cbd3f901a5094e (patch)
tree9725b5939d840f6eb3e8f39e032866e82413cb83 /ext/openal
parent90f766cc518b4fde651162d6e0c7d190373e3c61 (diff)
downloadgstreamer-plugins-bad-78022a6e0c05ce482b798cf638cbd3f901a5094e.tar.gz
docs: Port all docstring to gtk-doc markdown
Diffstat (limited to 'ext/openal')
-rw-r--r--ext/openal/gstopenalsink.c6
-rw-r--r--ext/openal/gstopenalsrc.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/ext/openal/gstopenalsink.c b/ext/openal/gstopenalsink.c
index 66de05113..eb9b9bace 100644
--- a/ext/openal/gstopenalsink.c
+++ b/ext/openal/gstopenalsink.c
@@ -24,6 +24,7 @@
/**
* SECTION:element-openalsink
+ * @title: openalsink
* @see_also: openalsrc
* @short_description: capture raw audio samples through OpenAL
*
@@ -31,8 +32,7 @@
*
* Unfortunately the capture API doesn't have a format enumeration/check. all you can do is try opening it and see if it works.
*
- * <refsect2>
- * <title>Example pipelines</title>
+ * ## Example pipelines
* |[
* gst-launch-1.0 audiotestsrc ! audioconvert ! volume volume=0.5 ! openalsink
* ]| will play a sine wave (continuous beep sound) through OpenAL.
@@ -42,7 +42,7 @@
* |[
* gst-launch-1.0 openalsrc ! "audio/x-raw,format=S16LE,rate=44100" ! audioconvert ! volume volume=0.25 ! openalsink
* ]| will capture and play audio through OpenAL.
- * </refsect2>
+ *
*/
/*
diff --git a/ext/openal/gstopenalsrc.c b/ext/openal/gstopenalsrc.c
index 26e73d49b..4f1e26e77 100644
--- a/ext/openal/gstopenalsrc.c
+++ b/ext/openal/gstopenalsrc.c
@@ -49,20 +49,20 @@
/**
* SECTION:element-openalsrc
+ * @title: openalsrc
* @see_also: openalsink
* @short_description: capture raw audio samples through OpenAL
*
* This element captures raw audio samples through OpenAL.
*
- * <refsect2>
- * <title>Example pipelines</title>
+ * ## Example pipelines
* |[
* gst-launch-1.0 -v openalsrc ! audioconvert ! wavenc ! filesink location=stream.wav
* ]| * will capture sound through OpenAL and encode it to a wav file.
* |[
* gst-launch-1.0 openalsrc ! "audio/x-raw,format=S16LE,rate=44100" ! audioconvert ! volume volume=0.25 ! openalsink
* ]| will capture and play audio through OpenAL.
- * </refsect2>
+ *
*/
/*