diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-02-14 09:02:53 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-02-14 09:02:53 +0000 |
commit | 214d7e061927b329407a603ecca9fb501b995b2c (patch) | |
tree | cb7047996874bbbe6fed9be7a39add68cd5ed7bd | |
parent | a4590bbc1e434b34b8f9ef2515fa76ce1eace655 (diff) | |
download | gstreamer-plugins-bad-214d7e061927b329407a603ecca9fb501b995b2c.tar.gz |
insertbin: fix up gtk-doc chunk and add since markers
-rw-r--r-- | gst-libs/gst/insertbin/gstinsertbin.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gst-libs/gst/insertbin/gstinsertbin.c b/gst-libs/gst/insertbin/gstinsertbin.c index 1aa5c0889..2908adb14 100644 --- a/gst-libs/gst/insertbin/gstinsertbin.c +++ b/gst-libs/gst/insertbin/gstinsertbin.c @@ -36,9 +36,10 @@ * this callback will be called from, it could be called before the action * returns or it could be called later from another thread. The signature of * this callback GstInsertBinCallback(). + * + * Since: 1.2 */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -858,6 +859,8 @@ reject: * in the bin. * * Same as the #GstInsertBin::prepend signal. + * + * Since: 1.2 */ void @@ -881,6 +884,8 @@ gst_insert_bin_prepend (GstInsertBin * self, GstElement * element, * in the bin. * * Same as the #GstInsertBin::append signal. + * + * Since: 1.2 */ void @@ -894,7 +899,7 @@ gst_insert_bin_append (GstInsertBin * self, GstElement * element, } /** - * gst_insert_bin_insert_before + * gst_insert_bin_insert_before: * @element: the #GstElement to add * @sibling: the #GstElement to add @element before * @callback: the callback to call when the element has been added or not, or @@ -905,6 +910,8 @@ gst_insert_bin_append (GstInsertBin * self, GstElement * element, * element in the bin. * * Same as the #GstInsertBin::insert-before signal. + * + * Since: 1.2 */ void gst_insert_bin_insert_before (GstInsertBin * self, GstElement * element, @@ -929,6 +936,8 @@ gst_insert_bin_insert_before (GstInsertBin * self, GstElement * element, * element in the bin. * * Same as the #GstInsertBin::insert-after signal. + * + * Since: 1.2 */ void gst_insert_bin_insert_after (GstInsertBin * self, GstElement * element, @@ -951,6 +960,8 @@ gst_insert_bin_insert_after (GstInsertBin * self, GstElement * element, * This action signal removed the filter like element from the bin. * * Same as the #GstInsertBin::remove signal. + * + * Since: 1.2 */ void @@ -1017,6 +1028,8 @@ gst_insert_bin_remove (GstInsertBin * self, GstElement * element, * Creates a new #GstInsertBin * * Returns: The new #GstInsertBin + * + * Since: 1.2 */ GstElement * |