summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2013-05-15 20:03:30 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2013-05-15 20:03:30 -0400
commitd0524c0579ebef7293e0bc4e2cd2536f17f1d746 (patch)
tree8045f63ab731e040e2caa4e6c2b3d49a80c10a93
parent4c4fc14afc0b49108fa16fa752df2f961c059700 (diff)
downloadgstreamer-plugins-bad-d0524c0579ebef7293e0bc4e2cd2536f17f1d746.tar.gz
insertbin: Annotate callback scopes
-rw-r--r--gst-libs/gst/insertbin/gstinsertbin.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gst-libs/gst/insertbin/gstinsertbin.c b/gst-libs/gst/insertbin/gstinsertbin.c
index 2908adb14..efa0e5b8e 100644
--- a/gst-libs/gst/insertbin/gstinsertbin.c
+++ b/gst-libs/gst/insertbin/gstinsertbin.c
@@ -851,8 +851,8 @@ reject:
/**
* gst_insert_bin_prepend:
* @element: the #GstElement to add
- * @callback: the callback to call when the element has been added or not, or
- * %NULL
+ * @callback: (scope async): the callback to call when the element has been
+ * added or not, or %NULL
* @user_data: The data to pass to the callback
*
* This action signal adds the filter like element before any other element
@@ -876,8 +876,8 @@ gst_insert_bin_prepend (GstInsertBin * self, GstElement * element,
/**
* gst_insert_bin_append:
* @element: the #GstElement to add
- * @callback: the callback to call when the element has been added or not, or
- * %NULL
+ * @callback: (scope async): the callback to call when the element has been
+ * added or not, or %NULL
* @user_data: The data to pass to the callback
*
* This action signal adds the filter like element after any other element
@@ -902,8 +902,8 @@ gst_insert_bin_append (GstInsertBin * self, GstElement * element,
* 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
- * %NULL
+ * @callback: (scope async): the callback to call when the element has been
+ * added or not, or %NULL
* @user_data: The data to pass to the callback
*
* This action signal adds the filter like element before the @sibling
@@ -928,8 +928,8 @@ gst_insert_bin_insert_before (GstInsertBin * self, GstElement * element,
* gst_insert_bin_insert_after:
* @element: the #GstElement to add
* @sibling: the #GstElement to add @element after
- * @callback: the callback to call when the element has been added or not, or
- * %NULL
+ * @callback: (scope async): the callback to call when the element has been
+ * added or not, or %NULL
* @user_data: The data to pass to the callback
*
* This action signal adds the filter like element after the @sibling
@@ -953,8 +953,8 @@ gst_insert_bin_insert_after (GstInsertBin * self, GstElement * element,
/**
* gst_insert_bin_remove:
* @element: the #GstElement to remove
- * @callback: the callback to call when the element has been removed or not,
- * or %NULL
+ * @callback: (scope async): the callback to call when the element has been
+ * removed or not, or %NULL
* @user_data: The data to pass to the callback
*
* This action signal removed the filter like element from the bin.