2 * Copyright (C) 2010 Wim Taymans <wim.taymans@gmail.com>
4 * gstbufferpool.c: GstBufferPool baseclass
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
23 * SECTION:gstbufferpool
24 * @title: GstBufferPool
25 * @short_description: Pool for buffers
26 * @see_also: #GstBuffer
28 * A #GstBufferPool is an object that can be used to pre-allocate and recycle
29 * buffers of the same size and with the same properties.
31 * A #GstBufferPool is created with gst_buffer_pool_new().
33 * Once a pool is created, it needs to be configured. A call to
34 * gst_buffer_pool_get_config() returns the current configuration structure from
35 * the pool. With gst_buffer_pool_config_set_params() and
36 * gst_buffer_pool_config_set_allocator() the bufferpool parameters and
37 * allocator can be configured. Other properties can be configured in the pool
38 * depending on the pool implementation.
40 * A bufferpool can have extra options that can be enabled with
41 * gst_buffer_pool_config_add_option(). The available options can be retrieved
42 * with gst_buffer_pool_get_options(). Some options allow for additional
43 * configuration properties to be set.
45 * After the configuration structure has been configured,
46 * gst_buffer_pool_set_config() updates the configuration in the pool. This can
47 * fail when the configuration structure is not accepted.
49 * After the pool has been configured, it can be activated with
50 * gst_buffer_pool_set_active(). This will preallocate the configured resources
53 * When the pool is active, gst_buffer_pool_acquire_buffer() can be used to
54 * retrieve a buffer from the pool.
56 * Buffers allocated from a bufferpool will automatically be returned to the
57 * pool with gst_buffer_pool_release_buffer() when their refcount drops to 0.
59 * The bufferpool can be deactivated again with gst_buffer_pool_set_active().
60 * All further gst_buffer_pool_acquire_buffer() calls will return an error. When
61 * all buffers are returned to the pool they will be freed.
64 #include "gst_private.h"
65 #include "glib-compat-private.h"
71 #include <sys/types.h>
73 #include "gstatomicqueue.h"
79 #include "gstbufferpool.h"
83 # define EWOULDBLOCK EAGAIN /* This is just to placate gcc */
85 #endif /* G_OS_WIN32 */
87 GST_DEBUG_CATEGORY_STATIC (gst_buffer_pool_debug);
88 #define GST_CAT_DEFAULT gst_buffer_pool_debug
90 #define GST_BUFFER_POOL_LOCK(pool) (g_rec_mutex_lock(&pool->priv->rec_lock))
91 #define GST_BUFFER_POOL_UNLOCK(pool) (g_rec_mutex_unlock(&pool->priv->rec_lock))
93 struct _GstBufferPoolPrivate
95 GstAtomicQueue *queue;
102 gint outstanding; /* number of buffers that are in use */
105 GstStructure *config;
111 GstAllocator *allocator;
112 GstAllocationParams params;
115 static void gst_buffer_pool_dispose (GObject * object);
116 static void gst_buffer_pool_finalize (GObject * object);
118 G_DEFINE_TYPE_WITH_PRIVATE (GstBufferPool, gst_buffer_pool, GST_TYPE_OBJECT);
120 static gboolean default_start (GstBufferPool * pool);
121 static gboolean default_stop (GstBufferPool * pool);
122 static gboolean default_set_config (GstBufferPool * pool,
123 GstStructure * config);
124 static GstFlowReturn default_alloc_buffer (GstBufferPool * pool,
125 GstBuffer ** buffer, GstBufferPoolAcquireParams * params);
126 static GstFlowReturn default_acquire_buffer (GstBufferPool * pool,
127 GstBuffer ** buffer, GstBufferPoolAcquireParams * params);
128 static void default_reset_buffer (GstBufferPool * pool, GstBuffer * buffer);
129 static void default_free_buffer (GstBufferPool * pool, GstBuffer * buffer);
130 static void default_release_buffer (GstBufferPool * pool, GstBuffer * buffer);
133 gst_buffer_pool_class_init (GstBufferPoolClass * klass)
135 GObjectClass *gobject_class = (GObjectClass *) klass;
137 gobject_class->dispose = gst_buffer_pool_dispose;
138 gobject_class->finalize = gst_buffer_pool_finalize;
140 klass->start = default_start;
141 klass->stop = default_stop;
142 klass->set_config = default_set_config;
143 klass->acquire_buffer = default_acquire_buffer;
144 klass->reset_buffer = default_reset_buffer;
145 klass->alloc_buffer = default_alloc_buffer;
146 klass->release_buffer = default_release_buffer;
147 klass->free_buffer = default_free_buffer;
149 GST_DEBUG_CATEGORY_INIT (gst_buffer_pool_debug, "bufferpool", 0,
154 gst_buffer_pool_init (GstBufferPool * pool)
156 GstBufferPoolPrivate *priv;
158 priv = pool->priv = gst_buffer_pool_get_instance_private (pool);
160 g_rec_mutex_init (&priv->rec_lock);
162 priv->poll = gst_poll_new_timer ();
163 priv->queue = gst_atomic_queue_new (16);
165 priv->active = FALSE;
166 priv->configured = FALSE;
167 priv->started = FALSE;
168 priv->config = gst_structure_new_id_empty (GST_QUARK (BUFFER_POOL_CONFIG));
169 gst_buffer_pool_config_set_params (priv->config, NULL, 0, 0, 0);
170 priv->allocator = NULL;
171 gst_allocation_params_init (&priv->params);
172 gst_buffer_pool_config_set_allocator (priv->config, priv->allocator,
174 /* 1 control write for flushing - the flush token */
175 gst_poll_write_control (priv->poll);
176 /* 1 control write for marking that we are not waiting for poll - the wait token */
177 gst_poll_write_control (priv->poll);
179 GST_DEBUG_OBJECT (pool, "created");
183 gst_buffer_pool_dispose (GObject * object)
186 GstBufferPoolPrivate *priv;
188 pool = GST_BUFFER_POOL_CAST (object);
191 GST_DEBUG_OBJECT (pool, "%p dispose", pool);
193 gst_buffer_pool_set_active (pool, FALSE);
194 gst_clear_object (&priv->allocator);
196 G_OBJECT_CLASS (gst_buffer_pool_parent_class)->dispose (object);
200 gst_buffer_pool_finalize (GObject * object)
203 GstBufferPoolPrivate *priv;
205 pool = GST_BUFFER_POOL_CAST (object);
208 GST_DEBUG_OBJECT (pool, "%p finalize", pool);
210 gst_atomic_queue_unref (priv->queue);
211 gst_poll_free (priv->poll);
212 gst_structure_free (priv->config);
213 g_rec_mutex_clear (&priv->rec_lock);
215 G_OBJECT_CLASS (gst_buffer_pool_parent_class)->finalize (object);
219 * gst_buffer_pool_new:
221 * Creates a new #GstBufferPool instance.
223 * Returns: (transfer full): a new #GstBufferPool instance
226 gst_buffer_pool_new (void)
228 GstBufferPool *result;
230 result = g_object_new (GST_TYPE_BUFFER_POOL, NULL);
231 GST_DEBUG_OBJECT (result, "created new buffer pool");
233 /* Clear floating flag */
234 gst_object_ref_sink (result);
240 default_alloc_buffer (GstBufferPool * pool, GstBuffer ** buffer,
241 GstBufferPoolAcquireParams * params)
243 GstBufferPoolPrivate *priv = pool->priv;
246 gst_buffer_new_allocate (priv->allocator, priv->size, &priv->params);
249 return GST_FLOW_ERROR;
255 mark_meta_pooled (GstBuffer * buffer, GstMeta ** meta, gpointer user_data)
257 GST_DEBUG_OBJECT (GST_BUFFER_POOL (user_data),
258 "marking meta %p as POOLED in buffer %p", *meta, buffer);
259 GST_META_FLAG_SET (*meta, GST_META_FLAG_POOLED);
260 GST_META_FLAG_SET (*meta, GST_META_FLAG_LOCKED);
266 do_alloc_buffer (GstBufferPool * pool, GstBuffer ** buffer,
267 GstBufferPoolAcquireParams * params)
269 GstBufferPoolPrivate *priv = pool->priv;
270 GstFlowReturn result;
271 gint cur_buffers, max_buffers;
272 GstBufferPoolClass *pclass;
274 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
276 if (G_UNLIKELY (!pclass->alloc_buffer))
279 max_buffers = priv->max_buffers;
281 /* increment the allocation counter */
282 cur_buffers = g_atomic_int_add (&priv->cur_buffers, 1);
283 if (max_buffers && cur_buffers >= max_buffers)
286 result = pclass->alloc_buffer (pool, buffer, params);
287 if (G_UNLIKELY (result != GST_FLOW_OK))
290 /* lock all metadata and mark as pooled, we want this to remain on
291 * the buffer and we want to remove any other metadata that gets added
293 gst_buffer_foreach_meta (*buffer, mark_meta_pooled, pool);
295 /* un-tag memory, this is how we expect the buffer when it is
297 GST_BUFFER_FLAG_UNSET (*buffer, GST_BUFFER_FLAG_TAG_MEMORY);
299 GST_LOG_OBJECT (pool, "allocated buffer %d/%d, %p", cur_buffers,
300 max_buffers, *buffer);
307 GST_ERROR_OBJECT (pool, "no alloc function");
308 return GST_FLOW_NOT_SUPPORTED;
312 GST_DEBUG_OBJECT (pool, "max buffers reached");
313 g_atomic_int_add (&priv->cur_buffers, -1);
318 GST_WARNING_OBJECT (pool, "alloc function failed");
319 g_atomic_int_add (&priv->cur_buffers, -1);
324 /* the default implementation for preallocating the buffers in the pool */
326 default_start (GstBufferPool * pool)
329 GstBufferPoolPrivate *priv = pool->priv;
330 GstBufferPoolClass *pclass;
332 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
334 /* we need to prealloc buffers */
335 for (i = 0; i < priv->min_buffers; i++) {
338 if (do_alloc_buffer (pool, &buffer, NULL) != GST_FLOW_OK)
341 /* release to the queue, we call the vmethod directly, we don't need to do
342 * the other refcount handling right now. */
343 if (G_LIKELY (pclass->release_buffer))
344 pclass->release_buffer (pool, buffer);
351 GST_WARNING_OBJECT (pool, "failed to allocate buffer");
356 /* must be called with the lock */
358 do_start (GstBufferPool * pool)
360 GstBufferPoolPrivate *priv = pool->priv;
362 if (!priv->started) {
363 GstBufferPoolClass *pclass;
365 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
367 GST_LOG_OBJECT (pool, "starting");
368 /* start the pool, subclasses should allocate buffers and put them
370 if (G_LIKELY (pclass->start)) {
371 if (!pclass->start (pool))
374 priv->started = TRUE;
380 default_free_buffer (GstBufferPool * pool, GstBuffer * buffer)
382 gst_buffer_unref (buffer);
386 do_free_buffer (GstBufferPool * pool, GstBuffer * buffer)
388 GstBufferPoolPrivate *priv;
389 GstBufferPoolClass *pclass;
392 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
394 g_atomic_int_add (&priv->cur_buffers, -1);
395 GST_LOG_OBJECT (pool, "freeing buffer %p (%u left)", buffer,
398 if (G_LIKELY (pclass->free_buffer))
399 pclass->free_buffer (pool, buffer);
402 /* must be called with the lock */
404 default_stop (GstBufferPool * pool)
406 GstBufferPoolPrivate *priv = pool->priv;
410 while ((buffer = gst_atomic_queue_pop (priv->queue))) {
411 while (!gst_poll_read_control (priv->poll)) {
412 if (errno == EWOULDBLOCK) {
413 /* We put the buffer into the queue but did not finish writing control
414 * yet, let's wait a bit and retry */
418 /* Critical error but GstPoll already complained */
422 do_free_buffer (pool, buffer);
424 return priv->cur_buffers == 0;
427 /* must be called with the lock */
429 do_stop (GstBufferPool * pool)
431 GstBufferPoolPrivate *priv = pool->priv;
434 GstBufferPoolClass *pclass;
436 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
438 GST_LOG_OBJECT (pool, "stopping");
439 if (G_LIKELY (pclass->stop)) {
440 if (!pclass->stop (pool))
443 priv->started = FALSE;
448 /* must be called with the lock */
450 do_set_flushing (GstBufferPool * pool, gboolean flushing)
452 GstBufferPoolPrivate *priv = pool->priv;
453 GstBufferPoolClass *pclass;
455 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
457 if (GST_BUFFER_POOL_IS_FLUSHING (pool) == flushing)
461 g_atomic_int_set (&pool->flushing, 1);
462 /* Write the flush token to wake up any waiters */
463 gst_poll_write_control (priv->poll);
465 if (pclass->flush_start)
466 pclass->flush_start (pool);
468 if (pclass->flush_stop)
469 pclass->flush_stop (pool);
471 while (!gst_poll_read_control (priv->poll)) {
472 if (errno == EWOULDBLOCK) {
473 /* This should not really happen unless flushing and unflushing
474 * happens on different threads. Let's wait a bit to get back flush
475 * token from the thread that was setting it to flushing */
479 /* Critical error but GstPoll already complained */
484 g_atomic_int_set (&pool->flushing, 0);
489 * gst_buffer_pool_set_active:
490 * @pool: a #GstBufferPool
491 * @active: the new active state
493 * Controls the active state of @pool. When the pool is inactive, new calls to
494 * gst_buffer_pool_acquire_buffer() will return with %GST_FLOW_FLUSHING.
496 * Activating the bufferpool will preallocate all resources in the pool based on
497 * the configuration of the pool.
499 * Deactivating will free the resources again when there are no outstanding
500 * buffers. When there are outstanding buffers, they will be freed as soon as
501 * they are all returned to the pool.
503 * Returns: %FALSE when the pool was not configured or when preallocation of the
507 gst_buffer_pool_set_active (GstBufferPool * pool, gboolean active)
510 GstBufferPoolPrivate *priv;
512 g_return_val_if_fail (GST_IS_BUFFER_POOL (pool), FALSE);
514 GST_LOG_OBJECT (pool, "active %d", active);
518 GST_BUFFER_POOL_LOCK (pool);
519 /* just return if we are already in the right state */
520 if (priv->active == active)
523 /* we need to be configured */
524 if (!priv->configured)
528 if (!do_start (pool))
531 /* flush_stop my release buffers, setting to active to avoid running
532 * do_stop while activating the pool */
535 /* unset the flushing state now */
536 do_set_flushing (pool, FALSE);
540 /* set to flushing first */
541 do_set_flushing (pool, TRUE);
543 /* when all buffers are in the pool, free them. Else they will be
544 * freed when they are released */
545 outstanding = g_atomic_int_get (&priv->outstanding);
546 GST_LOG_OBJECT (pool, "outstanding buffers %d", outstanding);
547 if (outstanding == 0) {
552 priv->active = FALSE;
554 GST_BUFFER_POOL_UNLOCK (pool);
560 GST_DEBUG_OBJECT (pool, "pool was in the right state");
561 GST_BUFFER_POOL_UNLOCK (pool);
566 GST_ERROR_OBJECT (pool, "pool was not configured");
567 GST_BUFFER_POOL_UNLOCK (pool);
572 GST_ERROR_OBJECT (pool, "start failed");
573 GST_BUFFER_POOL_UNLOCK (pool);
578 GST_WARNING_OBJECT (pool, "stop failed");
579 GST_BUFFER_POOL_UNLOCK (pool);
585 * gst_buffer_pool_is_active:
586 * @pool: a #GstBufferPool
588 * Checks if @pool is active. A pool can be activated with the
589 * gst_buffer_pool_set_active() call.
591 * Returns: %TRUE when the pool is active.
594 gst_buffer_pool_is_active (GstBufferPool * pool)
598 GST_BUFFER_POOL_LOCK (pool);
599 res = pool->priv->active;
600 GST_BUFFER_POOL_UNLOCK (pool);
606 default_set_config (GstBufferPool * pool, GstStructure * config)
608 GstBufferPoolPrivate *priv = pool->priv;
610 guint size, min_buffers, max_buffers;
611 GstAllocator *allocator;
612 GstAllocationParams params;
614 /* parse the config and keep around */
615 if (!gst_buffer_pool_config_get_params (config, &caps, &size, &min_buffers,
619 if (!gst_buffer_pool_config_get_allocator (config, &allocator, ¶ms))
622 GST_DEBUG_OBJECT (pool, "config %" GST_PTR_FORMAT, config);
625 priv->min_buffers = min_buffers;
626 priv->max_buffers = max_buffers;
627 priv->cur_buffers = 0;
630 gst_object_unref (priv->allocator);
631 if ((priv->allocator = allocator))
632 gst_object_ref (allocator);
633 priv->params = params;
639 GST_WARNING_OBJECT (pool, "invalid config %" GST_PTR_FORMAT, config);
645 * gst_buffer_pool_set_config:
646 * @pool: a #GstBufferPool
647 * @config: (transfer full): a #GstStructure
649 * Sets the configuration of the pool. If the pool is already configured, and
650 * the configuration hasn't changed, this function will return %TRUE. If the
651 * pool is active, this method will return %FALSE and active configuration
652 * will remain. Buffers allocated from this pool must be returned or else this
653 * function will do nothing and return %FALSE.
655 * @config is a #GstStructure that contains the configuration parameters for
656 * the pool. A default and mandatory set of parameters can be configured with
657 * gst_buffer_pool_config_set_params(), gst_buffer_pool_config_set_allocator()
658 * and gst_buffer_pool_config_add_option().
660 * If the parameters in @config can not be set exactly, this function returns
661 * %FALSE and will try to update as much state as possible. The new state can
662 * then be retrieved and refined with gst_buffer_pool_get_config().
664 * This function takes ownership of @config.
666 * Returns: %TRUE when the configuration could be set.
669 gst_buffer_pool_set_config (GstBufferPool * pool, GstStructure * config)
672 GstBufferPoolClass *pclass;
673 GstBufferPoolPrivate *priv;
675 g_return_val_if_fail (GST_IS_BUFFER_POOL (pool), FALSE);
676 g_return_val_if_fail (config != NULL, FALSE);
680 GST_BUFFER_POOL_LOCK (pool);
682 /* nothing to do if config is unchanged */
683 if (priv->configured && gst_structure_is_equal (config, priv->config))
684 goto config_unchanged;
686 /* can't change the settings when active */
690 /* we can't change when outstanding buffers */
691 if (g_atomic_int_get (&priv->outstanding) != 0)
692 goto have_outstanding;
694 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
696 /* set the new config */
697 if (G_LIKELY (pclass->set_config))
698 result = pclass->set_config (pool, config);
702 /* save the config regardless of the result so user can read back the
703 * modified config and evaluate if the changes are acceptable */
705 gst_structure_free (priv->config);
706 priv->config = config;
709 /* now we are configured */
710 priv->configured = TRUE;
712 GST_BUFFER_POOL_UNLOCK (pool);
718 gst_structure_free (config);
719 GST_BUFFER_POOL_UNLOCK (pool);
725 gst_structure_free (config);
726 GST_INFO_OBJECT (pool, "can't change config, we are active");
727 GST_BUFFER_POOL_UNLOCK (pool);
732 gst_structure_free (config);
733 GST_WARNING_OBJECT (pool, "can't change config, have outstanding buffers");
734 GST_BUFFER_POOL_UNLOCK (pool);
740 * gst_buffer_pool_get_config:
741 * @pool: a #GstBufferPool
743 * Gets a copy of the current configuration of the pool. This configuration
744 * can be modified and used for the gst_buffer_pool_set_config() call.
746 * Returns: (transfer full): a copy of the current configuration of @pool.
749 gst_buffer_pool_get_config (GstBufferPool * pool)
751 GstStructure *result;
753 g_return_val_if_fail (GST_IS_BUFFER_POOL (pool), NULL);
755 GST_BUFFER_POOL_LOCK (pool);
756 result = gst_structure_copy (pool->priv->config);
757 GST_BUFFER_POOL_UNLOCK (pool);
762 static const gchar *empty_option[] = { NULL };
765 * gst_buffer_pool_get_options:
766 * @pool: a #GstBufferPool
768 * Gets a %NULL terminated array of string with supported bufferpool options for
769 * @pool. An option would typically be enabled with
770 * gst_buffer_pool_config_add_option().
772 * Returns: (array zero-terminated=1) (transfer none): a %NULL terminated array
776 gst_buffer_pool_get_options (GstBufferPool * pool)
778 GstBufferPoolClass *pclass;
779 const gchar **result;
781 g_return_val_if_fail (GST_IS_BUFFER_POOL (pool), NULL);
783 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
785 if (G_LIKELY (pclass->get_options)) {
786 if ((result = pclass->get_options (pool)) == NULL)
789 result = empty_option;
796 g_warning ("bufferpool subclass returned NULL options");
802 * gst_buffer_pool_has_option:
803 * @pool: a #GstBufferPool
806 * Checks if the bufferpool supports @option.
808 * Returns: %TRUE if the buffer pool contains @option.
811 gst_buffer_pool_has_option (GstBufferPool * pool, const gchar * option)
814 const gchar **options;
816 g_return_val_if_fail (GST_IS_BUFFER_POOL (pool), FALSE);
817 g_return_val_if_fail (option != NULL, FALSE);
819 options = gst_buffer_pool_get_options (pool);
821 for (i = 0; options[i]; i++) {
822 if (g_str_equal (options[i], option))
829 * gst_buffer_pool_config_set_params:
830 * @config: a #GstBufferPool configuration
831 * @caps: (nullable): caps for the buffers
832 * @size: the size of each buffer, not including prefix and padding
833 * @min_buffers: the minimum amount of buffers to allocate.
834 * @max_buffers: the maximum amount of buffers to allocate or 0 for unlimited.
836 * Configures @config with the given parameters.
839 gst_buffer_pool_config_set_params (GstStructure * config, GstCaps * caps,
840 guint size, guint min_buffers, guint max_buffers)
842 g_return_if_fail (config != NULL);
843 g_return_if_fail (max_buffers == 0 || min_buffers <= max_buffers);
844 g_return_if_fail (caps == NULL || gst_caps_is_fixed (caps));
846 gst_structure_id_set (config,
847 GST_QUARK (CAPS), GST_TYPE_CAPS, caps,
848 GST_QUARK (SIZE), G_TYPE_UINT, size,
849 GST_QUARK (MIN_BUFFERS), G_TYPE_UINT, min_buffers,
850 GST_QUARK (MAX_BUFFERS), G_TYPE_UINT, max_buffers, NULL);
854 * gst_buffer_pool_config_set_allocator:
855 * @config: a #GstBufferPool configuration
856 * @allocator: (nullable): a #GstAllocator
857 * @params: (nullable): #GstAllocationParams
859 * Sets the @allocator and @params on @config.
861 * One of @allocator and @params can be %NULL, but not both. When @allocator
862 * is %NULL, the default allocator of the pool will use the values in @param
863 * to perform its allocation. When @param is %NULL, the pool will use the
864 * provided @allocator with its default #GstAllocationParams.
866 * A call to gst_buffer_pool_set_config() can update the allocator and params
867 * with the values that it is able to do. Some pools are, for example, not able
868 * to operate with different allocators or cannot allocate with the values
869 * specified in @params. Use gst_buffer_pool_get_config() to get the currently
873 gst_buffer_pool_config_set_allocator (GstStructure * config,
874 GstAllocator * allocator, const GstAllocationParams * params)
876 g_return_if_fail (config != NULL);
877 g_return_if_fail (allocator != NULL || params != NULL);
879 gst_structure_id_set (config,
880 GST_QUARK (ALLOCATOR), GST_TYPE_ALLOCATOR, allocator,
881 GST_QUARK (PARAMS), GST_TYPE_ALLOCATION_PARAMS, params, NULL);
885 * gst_buffer_pool_config_add_option:
886 * @config: a #GstBufferPool configuration
887 * @option: an option to add
889 * Enables the option in @config. This will instruct the @bufferpool to enable
890 * the specified option on the buffers that it allocates.
892 * The options supported by @pool can be retrieved with gst_buffer_pool_get_options().
895 gst_buffer_pool_config_add_option (GstStructure * config, const gchar * option)
898 GValue option_value = { 0, };
901 g_return_if_fail (config != NULL);
903 value = gst_structure_id_get_value (config, GST_QUARK (OPTIONS));
905 len = gst_value_array_get_size (value);
906 for (i = 0; i < len; ++i) {
907 const GValue *nth_val = gst_value_array_get_value (value, i);
909 if (g_str_equal (option, g_value_get_string (nth_val)))
913 GValue new_array_val = { 0, };
915 g_value_init (&new_array_val, GST_TYPE_ARRAY);
916 gst_structure_id_take_value (config, GST_QUARK (OPTIONS), &new_array_val);
917 value = gst_structure_id_get_value (config, GST_QUARK (OPTIONS));
919 g_value_init (&option_value, G_TYPE_STRING);
920 g_value_set_string (&option_value, option);
921 gst_value_array_append_and_take_value ((GValue *) value, &option_value);
925 * gst_buffer_pool_config_n_options:
926 * @config: a #GstBufferPool configuration
928 * Retrieves the number of values currently stored in the options array of the
931 * Returns: the options array size as a #guint.
934 gst_buffer_pool_config_n_options (GstStructure * config)
939 g_return_val_if_fail (config != NULL, 0);
941 value = gst_structure_id_get_value (config, GST_QUARK (OPTIONS));
943 size = gst_value_array_get_size (value);
949 * gst_buffer_pool_config_get_option:
950 * @config: a #GstBufferPool configuration
951 * @index: position in the option array to read
953 * Parses an available @config and gets the option at @index of the options API
956 * Returns: (nullable): the option at @index.
959 gst_buffer_pool_config_get_option (GstStructure * config, guint index)
962 const gchar *ret = NULL;
964 g_return_val_if_fail (config != NULL, 0);
966 value = gst_structure_id_get_value (config, GST_QUARK (OPTIONS));
968 const GValue *option_value;
970 option_value = gst_value_array_get_value (value, index);
972 ret = g_value_get_string (option_value);
978 * gst_buffer_pool_config_has_option:
979 * @config: a #GstBufferPool configuration
982 * Checks if @config contains @option.
984 * Returns: %TRUE if the options array contains @option.
987 gst_buffer_pool_config_has_option (GstStructure * config, const gchar * option)
992 g_return_val_if_fail (config != NULL, 0);
994 value = gst_structure_id_get_value (config, GST_QUARK (OPTIONS));
996 len = gst_value_array_get_size (value);
997 for (i = 0; i < len; ++i) {
998 const GValue *nth_val = gst_value_array_get_value (value, i);
1000 if (g_str_equal (option, g_value_get_string (nth_val)))
1008 * gst_buffer_pool_config_get_params:
1009 * @config: (transfer none): a #GstBufferPool configuration
1010 * @caps: (out) (transfer none) (optional) (nullable): the caps of buffers
1011 * @size: (out) (optional): the size of each buffer, not including prefix and padding
1012 * @min_buffers: (out) (optional): the minimum amount of buffers to allocate.
1013 * @max_buffers: (out) (optional): the maximum amount of buffers to allocate or 0 for unlimited.
1015 * Gets the configuration values from @config.
1017 * Returns: %TRUE if all parameters could be fetched.
1020 gst_buffer_pool_config_get_params (GstStructure * config, GstCaps ** caps,
1021 guint * size, guint * min_buffers, guint * max_buffers)
1023 g_return_val_if_fail (config != NULL, FALSE);
1026 *caps = g_value_get_boxed (gst_structure_id_get_value (config,
1029 return gst_structure_id_get (config,
1030 GST_QUARK (SIZE), G_TYPE_UINT, size,
1031 GST_QUARK (MIN_BUFFERS), G_TYPE_UINT, min_buffers,
1032 GST_QUARK (MAX_BUFFERS), G_TYPE_UINT, max_buffers, NULL);
1036 * gst_buffer_pool_config_get_allocator:
1037 * @config: (transfer none): a #GstBufferPool configuration
1038 * @allocator: (out) (optional) (nullable) (transfer none): a #GstAllocator, or %NULL
1039 * @params: (out caller-allocates) (optional): #GstAllocationParams, or %NULL
1041 * Gets the @allocator and @params from @config.
1043 * Returns: %TRUE, if the values are set.
1046 gst_buffer_pool_config_get_allocator (GstStructure * config,
1047 GstAllocator ** allocator, GstAllocationParams * params)
1049 g_return_val_if_fail (config != NULL, FALSE);
1052 *allocator = g_value_get_object (gst_structure_id_get_value (config,
1053 GST_QUARK (ALLOCATOR)));
1055 GstAllocationParams *p;
1057 p = g_value_get_boxed (gst_structure_id_get_value (config,
1058 GST_QUARK (PARAMS)));
1062 gst_allocation_params_init (params);
1069 * gst_buffer_pool_config_validate_params:
1070 * @config: (transfer none): a #GstBufferPool configuration
1071 * @caps: (nullable) (transfer none): the excepted caps of buffers
1072 * @size: the expected size of each buffer, not including prefix and padding
1073 * @min_buffers: the expected minimum amount of buffers to allocate.
1074 * @max_buffers: the expect maximum amount of buffers to allocate or 0 for unlimited.
1076 * Validates that changes made to @config are still valid in the context of the
1077 * expected parameters. This function is a helper that can be used to validate
1078 * changes made by a pool to a config when gst_buffer_pool_set_config()
1079 * returns %FALSE. This expects that @caps haven't changed and that
1080 * @min_buffers aren't lower then what we initially expected.
1081 * This does not check if options or allocator parameters are still valid,
1082 * won't check if size have changed, since changing the size is valid to adapt
1087 * Returns: %TRUE, if the parameters are valid in this context.
1090 gst_buffer_pool_config_validate_params (GstStructure * config, GstCaps * caps,
1091 guint size, guint min_buffers, G_GNUC_UNUSED guint max_buffers)
1094 guint newsize, newmin;
1095 gboolean ret = FALSE;
1097 g_return_val_if_fail (config != NULL, FALSE);
1099 gst_buffer_pool_config_get_params (config, &newcaps, &newsize, &newmin, NULL);
1101 if (gst_caps_is_equal (caps, newcaps) && (newsize >= size)
1102 && (newmin >= min_buffers))
1108 static GstFlowReturn
1109 default_acquire_buffer (GstBufferPool * pool, GstBuffer ** buffer,
1110 GstBufferPoolAcquireParams * params)
1112 GstFlowReturn result;
1113 GstBufferPoolPrivate *priv = pool->priv;
1116 if (G_UNLIKELY (GST_BUFFER_POOL_IS_FLUSHING (pool)))
1119 /* try to get a buffer from the queue */
1120 *buffer = gst_atomic_queue_pop (priv->queue);
1121 if (G_LIKELY (*buffer)) {
1122 while (!gst_poll_read_control (priv->poll)) {
1123 if (errno == EWOULDBLOCK) {
1124 /* We put the buffer into the queue but did not finish writing control
1125 * yet, let's wait a bit and retry */
1129 /* Critical error but GstPoll already complained */
1133 result = GST_FLOW_OK;
1134 GST_LOG_OBJECT (pool, "acquired buffer %p", *buffer);
1138 /* no buffer, try to allocate some more */
1139 GST_LOG_OBJECT (pool, "no buffer, trying to allocate");
1140 result = do_alloc_buffer (pool, buffer, params);
1141 if (G_LIKELY (result == GST_FLOW_OK))
1142 /* we have a buffer, return it */
1145 if (G_UNLIKELY (result != GST_FLOW_EOS))
1146 /* something went wrong, return error */
1149 /* check if we need to wait */
1150 if (params && (params->flags & GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT)) {
1151 GST_LOG_OBJECT (pool, "no more buffers");
1155 /* now we release the control socket, we wait for a buffer release or
1157 if (!gst_poll_read_control (pool->priv->poll)) {
1158 if (errno == EWOULDBLOCK) {
1159 /* This means that we have two threads trying to allocate buffers
1160 * already, and the other one already got the wait token. This
1161 * means that we only have to wait for the poll now and not write the
1162 * token afterwards: we will be woken up once the other thread is
1163 * woken up and that one will write the wait token it removed */
1164 GST_LOG_OBJECT (pool, "waiting for free buffers or flushing");
1165 gst_poll_wait (priv->poll, GST_CLOCK_TIME_NONE);
1167 /* This is a critical error, GstPoll already gave a warning */
1168 result = GST_FLOW_ERROR;
1172 /* We're the first thread waiting, we got the wait token and have to
1173 * write it again later
1175 * We're a second thread and just consumed the flush token and block all
1176 * other threads, in which case we must not wait and give it back
1178 if (!GST_BUFFER_POOL_IS_FLUSHING (pool)) {
1179 GST_LOG_OBJECT (pool, "waiting for free buffers or flushing");
1180 gst_poll_wait (priv->poll, GST_CLOCK_TIME_NONE);
1182 gst_poll_write_control (pool->priv->poll);
1191 GST_DEBUG_OBJECT (pool, "we are flushing");
1192 return GST_FLOW_FLUSHING;
1197 dec_outstanding (GstBufferPool * pool)
1199 if (g_atomic_int_dec_and_test (&pool->priv->outstanding)) {
1200 /* all buffers are returned to the pool, see if we need to free them */
1201 if (GST_BUFFER_POOL_IS_FLUSHING (pool)) {
1202 /* take the lock so that set_active is not run concurrently */
1203 GST_BUFFER_POOL_LOCK (pool);
1204 /* now that we have the lock, check if we have been de-activated with
1205 * outstanding buffers */
1206 if (!pool->priv->active)
1209 GST_BUFFER_POOL_UNLOCK (pool);
1215 remove_meta_unpooled (GstBuffer * buffer, GstMeta ** meta, gpointer user_data)
1217 if (!GST_META_FLAG_IS_SET (*meta, GST_META_FLAG_POOLED)) {
1218 GST_META_FLAG_UNSET (*meta, GST_META_FLAG_LOCKED);
1225 default_reset_buffer (GstBufferPool * pool, GstBuffer * buffer)
1227 GST_BUFFER_FLAGS (buffer) &= GST_BUFFER_FLAG_TAG_MEMORY;
1229 GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
1230 GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
1231 GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
1232 GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
1233 GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
1235 /* if the memory is intact reset the size to the full size */
1236 if (!GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY)) {
1237 gsize offset, maxsize;
1238 gst_buffer_get_sizes (buffer, &offset, &maxsize);
1239 /* check if we can resize to at least the pool configured size. If not,
1240 * then this will fail internally in gst_buffer_resize().
1241 * default_release_buffer() will drop the buffer from the pool if the
1242 * sizes don't match */
1243 if (maxsize >= pool->priv->size) {
1244 gst_buffer_resize (buffer, -offset, pool->priv->size);
1246 GST_WARNING_OBJECT (pool, "Buffer %p without the memory tag has "
1247 "maxsize (%" G_GSIZE_FORMAT ") that is smaller than the "
1248 "configured buffer pool size (%u). The buffer will be not be "
1249 "reused. This is most likely a bug in this GstBufferPool subclass",
1250 buffer, maxsize, pool->priv->size);
1254 /* remove all metadata without the POOLED flag */
1255 gst_buffer_foreach_meta (buffer, remove_meta_unpooled, pool);
1259 * gst_buffer_pool_acquire_buffer:
1260 * @pool: a #GstBufferPool
1261 * @buffer: (out): a location for a #GstBuffer
1262 * @params: (transfer none) (allow-none): parameters.
1264 * Acquires a buffer from @pool. @buffer should point to a memory location that
1265 * can hold a pointer to the new buffer.
1267 * @params can contain optional parameters to influence the allocation.
1269 * Returns: a #GstFlowReturn such as %GST_FLOW_FLUSHING when the pool is
1273 gst_buffer_pool_acquire_buffer (GstBufferPool * pool, GstBuffer ** buffer,
1274 GstBufferPoolAcquireParams * params)
1276 GstBufferPoolClass *pclass;
1277 GstFlowReturn result;
1279 g_return_val_if_fail (GST_IS_BUFFER_POOL (pool), GST_FLOW_ERROR);
1280 g_return_val_if_fail (buffer != NULL, GST_FLOW_ERROR);
1282 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
1284 /* assume we'll have one more outstanding buffer we need to do that so
1285 * that concurrent set_active doesn't clear the buffers */
1286 g_atomic_int_inc (&pool->priv->outstanding);
1288 if (G_LIKELY (pclass->acquire_buffer))
1289 result = pclass->acquire_buffer (pool, buffer, params);
1291 result = GST_FLOW_NOT_SUPPORTED;
1293 if (G_LIKELY (result == GST_FLOW_OK)) {
1294 /* all buffers from the pool point to the pool and have the refcount of the
1295 * pool incremented */
1296 (*buffer)->pool = gst_object_ref (pool);
1298 dec_outstanding (pool);
1305 default_release_buffer (GstBufferPool * pool, GstBuffer * buffer)
1307 GST_LOG_OBJECT (pool, "released buffer %p %d", buffer,
1308 GST_MINI_OBJECT_FLAGS (buffer));
1310 /* memory should be untouched */
1311 if (G_UNLIKELY (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY)))
1314 /* size should have been reset. This is not a catch all, pool with
1315 * size requirement per memory should do their own check. */
1316 if (G_UNLIKELY (gst_buffer_get_size (buffer) != pool->priv->size))
1319 /* all memory should be exclusive to this buffer (and thus be writable) */
1320 if (G_UNLIKELY (!gst_buffer_is_all_memory_writable (buffer)))
1323 /* keep it around in our queue */
1324 gst_atomic_queue_push (pool->priv->queue, buffer);
1325 gst_poll_write_control (pool->priv->poll);
1331 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, pool,
1332 "discarding buffer %p: memory tag set", buffer);
1337 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, pool,
1338 "discarding buffer %p: size %" G_GSIZE_FORMAT " != %u",
1339 buffer, gst_buffer_get_size (buffer), pool->priv->size);
1344 GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, pool,
1345 "discarding buffer %p: memory not writable", buffer);
1350 do_free_buffer (pool, buffer);
1351 gst_poll_write_control (pool->priv->poll);
1357 * gst_buffer_pool_release_buffer:
1358 * @pool: a #GstBufferPool
1359 * @buffer: (transfer full): a #GstBuffer
1361 * Releases @buffer to @pool. @buffer should have previously been allocated from
1362 * @pool with gst_buffer_pool_acquire_buffer().
1364 * This function is usually called automatically when the last ref on @buffer
1368 gst_buffer_pool_release_buffer (GstBufferPool * pool, GstBuffer * buffer)
1370 GstBufferPoolClass *pclass;
1372 g_return_if_fail (GST_IS_BUFFER_POOL (pool));
1373 g_return_if_fail (buffer != NULL);
1375 /* check that the buffer is ours, all buffers returned to the pool have the
1376 * pool member set to NULL and the pool refcount decreased */
1377 if (!g_atomic_pointer_compare_and_exchange (&buffer->pool, pool, NULL))
1380 pclass = GST_BUFFER_POOL_GET_CLASS (pool);
1382 /* reset the buffer when needed */
1383 if (G_LIKELY (pclass->reset_buffer))
1384 pclass->reset_buffer (pool, buffer);
1386 if (G_LIKELY (pclass->release_buffer))
1387 pclass->release_buffer (pool, buffer);
1389 dec_outstanding (pool);
1391 /* decrease the refcount that the buffer had to us */
1392 gst_object_unref (pool);
1396 * gst_buffer_pool_set_flushing:
1397 * @pool: a #GstBufferPool
1398 * @flushing: whether to start or stop flushing
1400 * Enables or disables the flushing state of a @pool without freeing or
1401 * allocating buffers.
1406 gst_buffer_pool_set_flushing (GstBufferPool * pool, gboolean flushing)
1408 GstBufferPoolPrivate *priv;
1410 g_return_if_fail (GST_IS_BUFFER_POOL (pool));
1412 GST_LOG_OBJECT (pool, "flushing %d", flushing);
1416 GST_BUFFER_POOL_LOCK (pool);
1418 if (!priv->active) {
1419 GST_WARNING_OBJECT (pool, "can't change flushing state of inactive pool");
1423 do_set_flushing (pool, flushing);
1426 GST_BUFFER_POOL_UNLOCK (pool);