diff options
Diffstat (limited to 'ext/gio/gstgiostreamsrc.c')
-rw-r--r-- | ext/gio/gstgiostreamsrc.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/ext/gio/gstgiostreamsrc.c b/ext/gio/gstgiostreamsrc.c index 8b3dab03..81f0596d 100644 --- a/ext/gio/gstgiostreamsrc.c +++ b/ext/gio/gstgiostreamsrc.c @@ -21,21 +21,18 @@ /** * SECTION:element-giostreamsrc - * @short_description: Reads data from a GIO GInputStream * - * <refsect2> - * <para> * This plugin reads data from a custom GIO #GInputStream. - * </para> - * <para> + * * It can, for example, be used to read data from memory with a * #GMemoryInputStream or to read from a file with a * #GFileInputStream. - * </para> + * + * <refsect2> * <title>Example code</title> * <para> * The following example reads data from a #GMemoryOutputStream. - * <programlisting> + * |[ #include <gst/gst.h> #include <gio/gio.h> @@ -60,7 +57,7 @@ g_object_set (G_OBJECT (src), "stream", stream, NULL); ... - * </programlisting> + * ]| * </para> * </refsect2> */ |