diff options
Diffstat (limited to 'gst/gstelementfactory.c')
-rw-r--r-- | gst/gstelementfactory.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gst/gstelementfactory.c b/gst/gstelementfactory.c index 8cc4dc602..7d54d45cf 100644 --- a/gst/gstelementfactory.c +++ b/gst/gstelementfactory.c @@ -23,6 +23,7 @@ /** * SECTION:gstelementfactory + * @title: GstElementFactory * @short_description: Create GstElements from a factory * @see_also: #GstElement, #GstPlugin, #GstPluginFeature, #GstPadTemplate. * @@ -36,9 +37,8 @@ * * The following code example shows you how to create a GstFileSrc element. * - * <example> - * <title>Using an element factory</title> - * <programlisting language="c"> + * ## Using an element factory + * |[<!-- language="C" --> * #include <gst/gst.h> * * GstElement *src; @@ -51,8 +51,7 @@ * src = gst_element_factory_create (srcfactory, "src"); * g_return_if_fail (src != NULL); * ... - * </programlisting> - * </example> + * ]| */ #include "gst_private.h" |