check/harness: fix transfer annotations on buffer passing functions

This commit is contained in:
Matthew Waters 2017-12-05 20:56:09 +11:00
parent 18fe36a286
commit fa302587dd

View file

@ -1561,7 +1561,7 @@ gst_harness_create_buffer (GstHarness * h, gsize size)
/** /**
* gst_harness_push: * gst_harness_push:
* @h: a #GstHarness * @h: a #GstHarness
* @buffer: a #GstBuffer to push * @buffer: (transfer full): a #GstBuffer to push
* *
* Pushes a #GstBuffer on the #GstHarness srcpad. The standard way of * Pushes a #GstBuffer on the #GstHarness srcpad. The standard way of
* interacting with an harnessed element. * interacting with an harnessed element.
@ -1591,7 +1591,7 @@ gst_harness_push (GstHarness * h, GstBuffer * buffer)
* *
* MT safe. * MT safe.
* *
* Returns: a #GstBuffer or %NULL if timed out. * Returns: (transfer full): a #GstBuffer or %NULL if timed out.
* *
* Since: 1.6 * Since: 1.6
*/ */
@ -1621,7 +1621,7 @@ gst_harness_pull (GstHarness * h)
* *
* MT safe. * MT safe.
* *
* Returns: a #GstBuffer or %NULL if no buffers are present in the #GAsyncQueue * Returns: (transfer full): a #GstBuffer or %NULL if no buffers are present in the #GAsyncQueue
* *
* Since: 1.6 * Since: 1.6
*/ */
@ -1643,7 +1643,7 @@ gst_harness_try_pull (GstHarness * h)
/** /**
* gst_harness_push_and_pull: * gst_harness_push_and_pull:
* @h: a #GstHarness * @h: a #GstHarness
* @buffer: a #GstBuffer to push * @buffer: (transfer full): a #GstBuffer to push
* *
* Basically a gst_harness_push and a gst_harness_pull in one line. Reflects * Basically a gst_harness_push and a gst_harness_pull in one line. Reflects
* the fact that you often want to do exactly this in your test: Push one buffer * the fact that you often want to do exactly this in your test: Push one buffer
@ -1651,7 +1651,7 @@ gst_harness_try_pull (GstHarness * h)
* *
* MT safe. * MT safe.
* *
* Returns: a #GstBuffer or %NULL if timed out. * Returns: (transfer full): a #GstBuffer or %NULL if timed out.
* *
* Since: 1.6 * Since: 1.6
*/ */