summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-04-20 11:45:28 +0300
committerTim-Philipp Müller <tim@centricular.com>2016-10-21 11:25:24 +0100
commitc408dafd04fa0f47d471c892cb5a32921d7ec5a3 (patch)
tree70cbdfb5e99a85671bbf68ec40ee567ac806bb74
parentd0ee909cdd4c6a7c4f21a181661e262c504a38da (diff)
downloadgstreamer-c408dafd04fa0f47d471c892cb5a32921d7ec5a3.tar.gz
typefindhelper: Fix gobject-introspection warning about invalid transfer annotation
gsttypefindhelper.c:485: Warning: GstBase: invalid "transfer" annotation for gsize: only valid for array, struct, union, boxed, object and interface types
-rw-r--r--libs/gst/base/gsttypefindhelper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gst/base/gsttypefindhelper.c b/libs/gst/base/gsttypefindhelper.c
index b2fb21ca54..9aeceb4207 100644
--- a/libs/gst/base/gsttypefindhelper.c
+++ b/libs/gst/base/gsttypefindhelper.c
@@ -482,7 +482,7 @@ buf_helper_find_suggest (gpointer data, GstTypeFindProbability probability,
* gst_type_find_helper_for_data:
* @obj: (allow-none): object doing the typefinding, or %NULL (used for logging)
* @data: (in) (transfer none): a pointer with data to typefind
- * @size: (in) (transfer none): the size of @data
+ * @size: (in): the size of @data
* @prob: (out) (allow-none): location to store the probability of the found
* caps, or %NULL
*