mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
docs: gst_pad_new_from_*_template and gst_buffer_pool_new constructors return floating references
https://bugzilla.gnome.org/show_bug.cgi?id=710342
This commit is contained in:
parent
7b014d67a7
commit
f605472230
2 changed files with 3 additions and 3 deletions
|
@ -207,7 +207,7 @@ gst_buffer_pool_finalize (GObject * object)
|
|||
*
|
||||
* Creates a new #GstBufferPool instance.
|
||||
*
|
||||
* Returns: (transfer full): a new #GstBufferPool instance
|
||||
* Returns: (transfer floating): a new #GstBufferPool instance
|
||||
*/
|
||||
GstBufferPool *
|
||||
gst_buffer_pool_new (void)
|
||||
|
|
|
@ -749,7 +749,7 @@ gst_pad_new (const gchar * name, GstPadDirection direction)
|
|||
* will be assigned.
|
||||
* This function makes a copy of the name so you can safely free the name.
|
||||
*
|
||||
* Returns: (transfer full): a new #GstPad, or NULL in case of an error.
|
||||
* Returns: (transfer floating): a new #GstPad, or NULL in case of an error.
|
||||
*/
|
||||
GstPad *
|
||||
gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
|
||||
|
@ -770,7 +770,7 @@ gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
|
|||
* will be assigned.
|
||||
* This function makes a copy of the name so you can safely free the name.
|
||||
*
|
||||
* Returns: (transfer full): a new #GstPad, or NULL in case of an error.
|
||||
* Returns: (transfer floating): a new #GstPad, or NULL in case of an error.
|
||||
*/
|
||||
GstPad *
|
||||
gst_pad_new_from_static_template (GstStaticPadTemplate * templ,
|
||||
|
|
Loading…
Reference in a new issue