diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2015-09-15 18:05:11 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-09-15 18:05:43 +0100 |
commit | 366680ee591b6e38993a25a79cd9e20be913f73c (patch) | |
tree | 2928f7883562c45f8559f20cb27bfc6ff328c4bc | |
parent | 09900bbfb1eb1411de13e3d25a7d2862311574e5 (diff) |
bufferpool: sprinkle some allow-none and out annotations for g-i
-rw-r--r-- | gst/gstbufferpool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstbufferpool.c b/gst/gstbufferpool.c index bd53092a2..3bbff3428 100644 --- a/gst/gstbufferpool.c +++ b/gst/gstbufferpool.c @@ -996,8 +996,8 @@ gst_buffer_pool_config_get_params (GstStructure * config, GstCaps ** caps, /** * gst_buffer_pool_config_get_allocator: * @config: (transfer none): a #GstBufferPool configuration - * @allocator: (transfer none): a #GstAllocator - * @params: #GstAllocationParams + * @allocator: (out) (allow-none) (transfer none): a #GstAllocator, or %NULL + * @params: (out) (allow-none): #GstAllocationParams, or %NULL * * Get the @allocator and @params from @config. * |