From d86ecaf53e08c7b734f13e251599c4a8d0a6e53e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 20 Oct 2012 19:44:43 +0100 Subject: [PATCH] collectpads: fix g-i annotation for GstCollectPadsBufferFunction We pass ownership of the buffer to the function. --- libs/gst/base/gstcollectpads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/base/gstcollectpads.h b/libs/gst/base/gstcollectpads.h index 79b7fa4fee..c33ca4f5a1 100644 --- a/libs/gst/base/gstcollectpads.h +++ b/libs/gst/base/gstcollectpads.h @@ -147,7 +147,7 @@ typedef GstFlowReturn (*GstCollectPadsFunction) (GstCollectPads *pads, gpointer * GstCollectPadsBufferFunction: * @pads: the #GstCollectPads that trigered the callback * @data: the #GstCollectData of pad that has received the buffer - * @buffer: the #GstBuffer + * @buffer: (transfer full): the #GstBuffer * @user_data: user data passed to gst_collect_pads_set_buffer_function() * * A function that will be called when a (considered oldest) buffer can be muxed.