2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gstbuffer.c: Buffer operations
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
25 * @short_description: Data-passing buffer type
26 * @see_also: #GstPad, #GstMiniObject, #GstMemory, #GstMeta, #GstBufferPool
28 * Buffers are the basic unit of data transfer in GStreamer. They contain the
29 * timing and offset along with other arbitrary metadata that is associated
30 * with the #GstMemory blocks that the buffer contains.
32 * Buffers are usually created with gst_buffer_new(). After a buffer has been
33 * created one will typically allocate memory for it and add it to the buffer.
34 * The following example creates a buffer that can hold a given video frame
35 * with a given width, height and bits per plane.
36 * |[<!-- language="C" -->
39 * gint size, width, height, bpp;
41 * size = width * height * bpp;
42 * buffer = gst_buffer_new ();
43 * memory = gst_allocator_alloc (NULL, size, NULL);
44 * gst_buffer_insert_memory (buffer, -1, memory);
48 * Alternatively, use gst_buffer_new_allocate() to create a buffer with
49 * preallocated data of a given size.
51 * Buffers can contain a list of #GstMemory objects. You can retrieve how many
52 * memory objects with gst_buffer_n_memory() and you can get a pointer
53 * to memory with gst_buffer_peek_memory()
55 * A buffer will usually have timestamps, and a duration, but neither of these
56 * are guaranteed (they may be set to #GST_CLOCK_TIME_NONE). Whenever a
57 * meaningful value can be given for these, they should be set. The timestamps
58 * and duration are measured in nanoseconds (they are #GstClockTime values).
60 * The buffer DTS refers to the timestamp when the buffer should be decoded and
61 * is usually monotonically increasing. The buffer PTS refers to the timestamp when
62 * the buffer content should be presented to the user and is not always
63 * monotonically increasing.
65 * A buffer can also have one or both of a start and an end offset. These are
66 * media-type specific. For video buffers, the start offset will generally be
67 * the frame number. For audio buffers, it will be the number of samples
68 * produced so far. For compressed data, it could be the byte offset in a
69 * source or destination file. Likewise, the end offset will be the offset of
70 * the end of the buffer. These can only be meaningfully interpreted if you
71 * know the media type of the buffer (the preceding CAPS event). Either or both
72 * can be set to #GST_BUFFER_OFFSET_NONE.
74 * gst_buffer_ref() is used to increase the refcount of a buffer. This must be
75 * done when you want to keep a handle to the buffer after pushing it to the
76 * next element. The buffer refcount determines the writability of the buffer, a
77 * buffer is only writable when the refcount is exactly 1, i.e. when the caller
78 * has the only reference to the buffer.
80 * To efficiently create a smaller buffer out of an existing one, you can
81 * use gst_buffer_copy_region(). This method tries to share the memory objects
82 * between the two buffers.
84 * If a plug-in wants to modify the buffer data or metadata in-place, it should
85 * first obtain a buffer that is safe to modify by using
86 * gst_buffer_make_writable(). This function is optimized so that a copy will
87 * only be made when it is necessary.
89 * Several flags of the buffer can be set and unset with the
90 * GST_BUFFER_FLAG_SET() and GST_BUFFER_FLAG_UNSET() macros. Use
91 * GST_BUFFER_FLAG_IS_SET() to test if a certain #GstBufferFlags flag is set.
93 * Buffers can be efficiently merged into a larger buffer with
94 * gst_buffer_append(). Copying of memory will only be done when absolutely
97 * Arbitrary extra metadata can be set on a buffer with gst_buffer_add_meta().
98 * Metadata can be retrieved with gst_buffer_get_meta(). See also #GstMeta
100 * An element should either unref the buffer or push it out on a src pad
101 * using gst_pad_push() (see #GstPad).
103 * Buffers are usually freed by unreffing them with gst_buffer_unref(). When
104 * the refcount drops to 0, any memory and metadata pointed to by the buffer is
105 * unreffed as well. Buffers allocated from a #GstBufferPool will be returned to
106 * the pool when the refcount drops to 0.
108 * The #GstParentBufferMeta is a meta which can be attached to a #GstBuffer
109 * to hold a reference to another buffer that is only released when the child
110 * #GstBuffer is released.
112 * Typically, #GstParentBufferMeta is used when the child buffer is directly
113 * using the #GstMemory of the parent buffer, and wants to prevent the parent
114 * buffer from being returned to a buffer pool until the #GstMemory is available
115 * for re-use. (Since 1.6)
118 #include "gst_private.h"
127 #include "gstbuffer.h"
128 #include "gstbufferpool.h"
130 #include "gstutils.h"
131 #include "gstversion.h"
133 GType _gst_buffer_type = 0;
135 typedef struct _GstMetaItem GstMetaItem;
142 #define ITEM_SIZE(info) ((info)->size + sizeof (GstMetaItem))
144 #define GST_BUFFER_MEM_MAX 16
146 #define GST_BUFFER_SLICE_SIZE(b) (((GstBufferImpl *)(b))->slice_size)
147 #define GST_BUFFER_MEM_LEN(b) (((GstBufferImpl *)(b))->len)
148 #define GST_BUFFER_MEM_ARRAY(b) (((GstBufferImpl *)(b))->mem)
149 #define GST_BUFFER_MEM_PTR(b,i) (((GstBufferImpl *)(b))->mem[i])
150 #define GST_BUFFER_BUFMEM(b) (((GstBufferImpl *)(b))->bufmem)
151 #define GST_BUFFER_META(b) (((GstBufferImpl *)(b))->item)
159 /* the memory blocks */
161 GstMemory *mem[GST_BUFFER_MEM_MAX];
163 /* memory of the buffer when allocated from 1 chunk */
166 /* FIXME, make metadata allocation more efficient by using part of the
173 _is_span (GstMemory ** mem, gsize len, gsize * poffset, GstMemory ** parent)
175 GstMemory *mcur, *mprv;
176 gboolean have_offset = FALSE;
181 for (i = 0; i < len; i++) {
189 /* check if memory is contiguous */
190 if (!gst_memory_is_span (mprv, mcur, &poffs))
197 *parent = mprv->parent;
207 _get_merged_memory (GstBuffer * buffer, guint idx, guint length)
209 GstMemory **mem, *result = NULL;
211 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %u", buffer, idx,
214 mem = GST_BUFFER_MEM_ARRAY (buffer);
216 if (G_UNLIKELY (length == 0)) {
218 } else if (G_LIKELY (length == 1)) {
219 result = gst_memory_ref (mem[idx]);
221 GstMemory *parent = NULL;
222 gsize size, poffset = 0;
224 size = gst_buffer_get_sizes_range (buffer, idx, length, NULL, NULL);
226 if (G_UNLIKELY (_is_span (mem + idx, length, &poffset, &parent))) {
227 if (!GST_MEMORY_IS_NO_SHARE (parent))
228 result = gst_memory_share (parent, poffset, size);
230 GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy for merge %p", parent);
231 result = gst_memory_copy (parent, poffset, size);
234 gsize i, tocopy, left;
235 GstMapInfo sinfo, dinfo;
238 result = gst_allocator_alloc (NULL, size, NULL);
239 if (result == NULL || !gst_memory_map (result, &dinfo, GST_MAP_WRITE)) {
240 GST_CAT_ERROR (GST_CAT_BUFFER, "Failed to map memory writable");
242 gst_memory_unref (result);
249 for (i = idx; i < (idx + length) && left > 0; i++) {
250 if (!gst_memory_map (mem[i], &sinfo, GST_MAP_READ)) {
251 GST_CAT_ERROR (GST_CAT_BUFFER,
252 "buffer %p, idx %u, length %u failed to map readable", buffer,
254 gst_memory_unmap (result, &dinfo);
255 gst_memory_unref (result);
258 tocopy = MIN (sinfo.size, left);
259 GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
260 "memcpy %" G_GSIZE_FORMAT " bytes for merge %p from memory %p",
261 tocopy, result, mem[i]);
262 memcpy (ptr, (guint8 *) sinfo.data, tocopy);
265 gst_memory_unmap (mem[i], &sinfo);
267 gst_memory_unmap (result, &dinfo);
274 _replace_memory (GstBuffer * buffer, guint len, guint idx, guint length,
281 GST_CAT_LOG (GST_CAT_BUFFER,
282 "buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer, idx,
285 /* unref old memory */
286 for (i = idx; i < end; i++) {
287 GstMemory *old = GST_BUFFER_MEM_PTR (buffer, i);
289 gst_memory_unlock (old, GST_LOCK_FLAG_EXCLUSIVE);
290 gst_memory_unref (old);
294 /* replace with single memory */
295 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
296 GST_BUFFER_MEM_PTR (buffer, idx) = mem;
302 memmove (&GST_BUFFER_MEM_PTR (buffer, idx),
303 &GST_BUFFER_MEM_PTR (buffer, end), (len - end) * sizeof (gpointer));
305 GST_BUFFER_MEM_LEN (buffer) = len - length;
306 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
310 * gst_buffer_get_flags:
311 * @buffer: a #GstBuffer
313 * Get the #GstBufferFlags flags set on this buffer.
315 * Returns: the flags set on this buffer.
320 gst_buffer_get_flags (GstBuffer * buffer)
322 return (GstBufferFlags) GST_BUFFER_FLAGS (buffer);
326 * gst_buffer_flag_is_set:
327 * @buffer: a #GstBuffer
328 * @flags: the #GstBufferFlags flag to check.
330 * Gives the status of a specific flag on a buffer.
332 * Returns: %TRUE if all flags in @flags are found on @buffer.
337 gst_buffer_has_flags (GstBuffer * buffer, GstBufferFlags flags)
339 return GST_BUFFER_FLAG_IS_SET (buffer, flags);
343 * gst_buffer_set_flags:
344 * @buffer: a #GstBuffer
345 * @flags: the #GstBufferFlags to set.
347 * Sets one or more buffer flags on a buffer.
349 * Returns: %TRUE if @flags were successfully set on buffer.
354 gst_buffer_set_flags (GstBuffer * buffer, GstBufferFlags flags)
356 GST_BUFFER_FLAG_SET (buffer, flags);
361 * gst_buffer_unset_flags:
362 * @buffer: a #GstBuffer
363 * @flags: the #GstBufferFlags to clear
365 * Clears one or more buffer flags.
367 * Returns: true if @flags is successfully cleared from buffer.
372 gst_buffer_unset_flags (GstBuffer * buffer, GstBufferFlags flags)
374 GST_BUFFER_FLAG_UNSET (buffer, flags);
380 /* transfer full for return and transfer none for @mem */
381 static inline GstMemory *
382 _memory_get_exclusive_reference (GstMemory * mem)
384 GstMemory *ret = NULL;
386 if (gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE)) {
387 ret = gst_memory_ref (mem);
389 /* we cannot take another exclusive lock as the memory is already
390 * locked WRITE + EXCLUSIVE according to part-miniobject.txt */
391 ret = gst_memory_copy (mem, 0, -1);
394 if (!gst_memory_lock (ret, GST_LOCK_FLAG_EXCLUSIVE)) {
395 gst_memory_unref (ret);
402 GST_CAT_WARNING (GST_CAT_BUFFER, "Failed to acquire an exclusive lock for "
409 _memory_add (GstBuffer * buffer, gint idx, GstMemory * mem)
411 guint i, len = GST_BUFFER_MEM_LEN (buffer);
413 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %d, mem %p", buffer, idx, mem);
415 if (G_UNLIKELY (len >= GST_BUFFER_MEM_MAX)) {
416 /* too many buffer, span them. */
417 /* FIXME, there is room for improvement here: We could only try to merge
418 * 2 buffers to make some room. If we can't efficiently merge 2 buffers we
419 * could try to only merge the two smallest buffers to avoid memcpy, etc. */
420 GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "memory array overflow in buffer %p",
422 _replace_memory (buffer, len, 0, len, _get_merged_memory (buffer, 0, len));
423 /* we now have 1 single spanned buffer */
430 for (i = len; i > idx; i--) {
431 /* move buffers to insert, FIXME, we need to insert first and then merge */
432 GST_BUFFER_MEM_PTR (buffer, i) = GST_BUFFER_MEM_PTR (buffer, i - 1);
434 /* and insert the new buffer */
435 GST_BUFFER_MEM_PTR (buffer, idx) = mem;
436 GST_BUFFER_MEM_LEN (buffer) = len + 1;
438 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
441 GST_DEFINE_MINI_OBJECT_TYPE (GstBuffer, gst_buffer);
444 _priv_gst_buffer_initialize (void)
446 _gst_buffer_type = gst_buffer_get_type ();
450 * gst_buffer_get_max_memory:
452 * Get the maximum amount of memory blocks that a buffer can hold. This is a
453 * compile time constant that can be queried with the function.
455 * When more memory blocks are added, existing memory blocks will be merged
456 * together to make room for the new block.
458 * Returns: the maximum amount of memory blocks that a buffer can hold.
463 gst_buffer_get_max_memory (void)
465 return GST_BUFFER_MEM_MAX;
469 * gst_buffer_copy_into:
470 * @dest: a destination #GstBuffer
471 * @src: a source #GstBuffer
472 * @flags: flags indicating what metadata fields should be copied.
473 * @offset: offset to copy from
474 * @size: total size to copy. If -1, all data is copied.
476 * Copies the information from @src into @dest.
478 * If @dest already contains memory and @flags contains GST_BUFFER_COPY_MEMORY,
479 * the memory from @src will be appended to @dest.
481 * @flags indicate which fields will be copied.
483 * Returns: %TRUE if the copying succeeded, %FALSE otherwise.
486 gst_buffer_copy_into (GstBuffer * dest, GstBuffer * src,
487 GstBufferCopyFlags flags, gsize offset, gsize size)
491 gboolean region = FALSE;
493 g_return_val_if_fail (dest != NULL, FALSE);
494 g_return_val_if_fail (src != NULL, FALSE);
496 /* nothing to copy if the buffers are the same */
497 if (G_UNLIKELY (dest == src))
500 g_return_val_if_fail (gst_buffer_is_writable (dest), FALSE);
502 bufsize = gst_buffer_get_size (src);
503 g_return_val_if_fail (bufsize >= offset, FALSE);
507 size = bufsize - offset;
510 g_return_val_if_fail (bufsize >= offset + size, FALSE);
512 GST_CAT_LOG (GST_CAT_BUFFER, "copy %p to %p, offset %" G_GSIZE_FORMAT
513 "-%" G_GSIZE_FORMAT "/%" G_GSIZE_FORMAT, src, dest, offset, size,
516 if (flags & GST_BUFFER_COPY_FLAGS) {
518 guint flags_mask = ~GST_BUFFER_FLAG_TAG_MEMORY;
520 GST_MINI_OBJECT_FLAGS (dest) =
521 (GST_MINI_OBJECT_FLAGS (src) & flags_mask) |
522 (GST_MINI_OBJECT_FLAGS (dest) & ~flags_mask);
525 if (flags & GST_BUFFER_COPY_TIMESTAMPS) {
527 GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
528 GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
529 GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
530 if (size == bufsize) {
531 GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
532 GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
535 GST_BUFFER_PTS (dest) = GST_CLOCK_TIME_NONE;
536 GST_BUFFER_DTS (dest) = GST_CLOCK_TIME_NONE;
537 GST_BUFFER_DURATION (dest) = GST_CLOCK_TIME_NONE;
538 GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET_NONE;
539 GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_NONE;
543 if (flags & GST_BUFFER_COPY_MEMORY) {
544 gsize skip, left, len, dest_len, i, bsize;
547 deep = flags & GST_BUFFER_COPY_DEEP;
549 len = GST_BUFFER_MEM_LEN (src);
550 dest_len = GST_BUFFER_MEM_LEN (dest);
554 /* copy and make regions of the memory */
555 for (i = 0; i < len && left > 0; i++) {
556 GstMemory *mem = GST_BUFFER_MEM_PTR (src, i);
558 bsize = gst_memory_get_sizes (mem, NULL, NULL);
561 /* don't copy buffer */
564 GstMemory *newmem = NULL;
567 tocopy = MIN (bsize - skip, left);
569 if (tocopy < bsize && !deep && !GST_MEMORY_IS_NO_SHARE (mem)) {
570 /* we need to clip something */
571 newmem = gst_memory_share (mem, skip, tocopy);
573 gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
578 if (deep || GST_MEMORY_IS_NO_SHARE (mem) || (!newmem && tocopy < bsize)) {
579 /* deep copy or we're not allowed to share this memory
580 * between buffers, always copy then */
581 newmem = gst_memory_copy (mem, skip, tocopy);
583 gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
586 } else if (!newmem) {
587 newmem = _memory_get_exclusive_reference (mem);
591 gst_buffer_remove_memory_range (dest, dest_len, -1);
595 _memory_add (dest, -1, newmem);
599 if (flags & GST_BUFFER_COPY_MERGE) {
602 len = GST_BUFFER_MEM_LEN (dest);
603 mem = _get_merged_memory (dest, 0, len);
605 gst_buffer_remove_memory_range (dest, dest_len, -1);
608 _replace_memory (dest, len, 0, len, mem);
612 if (flags & GST_BUFFER_COPY_META) {
613 /* NOTE: GstGLSyncMeta copying relies on the meta
614 * being copied now, after the buffer data,
615 * so this has to happen last */
616 for (walk = GST_BUFFER_META (src); walk; walk = walk->next) {
617 GstMeta *meta = &walk->meta;
618 const GstMetaInfo *info = meta->info;
620 /* Don't copy memory metas if we only copied part of the buffer, didn't
621 * copy memories or merged memories. In all these cases the memory
622 * structure has changed and the memory meta becomes meaningless.
624 if ((region || !(flags & GST_BUFFER_COPY_MEMORY)
625 || (flags & GST_BUFFER_COPY_MERGE))
626 && gst_meta_api_type_has_tag (info->api, _gst_meta_tag_memory)) {
627 GST_CAT_DEBUG (GST_CAT_BUFFER,
628 "don't copy memory meta %p of API type %s", meta,
629 g_type_name (info->api));
630 } else if (info->transform_func) {
631 GstMetaTransformCopy copy_data;
633 copy_data.region = region;
634 copy_data.offset = offset;
635 copy_data.size = size;
637 if (!info->transform_func (dest, meta, src,
638 _gst_meta_transform_copy, ©_data)) {
639 GST_CAT_ERROR (GST_CAT_BUFFER,
640 "failed to copy meta %p of API type %s", meta,
641 g_type_name (info->api));
651 gst_buffer_copy_with_flags (const GstBuffer * buffer, GstBufferCopyFlags flags)
655 g_return_val_if_fail (buffer != NULL, NULL);
657 /* create a fresh new buffer */
658 copy = gst_buffer_new ();
660 /* copy what the 'flags' want from our parent */
661 /* FIXME why we can't pass const to gst_buffer_copy_into() ? */
662 if (!gst_buffer_copy_into (copy, (GstBuffer *) buffer, flags, 0, -1))
663 gst_buffer_replace (©, NULL);
666 GST_BUFFER_FLAG_UNSET (copy, GST_BUFFER_FLAG_TAG_MEMORY);
672 _gst_buffer_copy (const GstBuffer * buffer)
674 return gst_buffer_copy_with_flags (buffer, GST_BUFFER_COPY_ALL);
678 * gst_buffer_copy_deep:
679 * @buf: a #GstBuffer.
681 * Create a copy of the given buffer. This will make a newly allocated
682 * copy of the data the source buffer contains.
684 * Returns: (transfer full): a new copy of @buf.
689 gst_buffer_copy_deep (const GstBuffer * buffer)
691 return gst_buffer_copy_with_flags (buffer,
692 GST_BUFFER_COPY_ALL | GST_BUFFER_COPY_DEEP);
695 /* the default dispose function revives the buffer and returns it to the
696 * pool when there is a pool */
698 _gst_buffer_dispose (GstBuffer * buffer)
702 /* no pool, do free */
703 if ((pool = buffer->pool) == NULL)
706 /* keep the buffer alive */
707 gst_buffer_ref (buffer);
708 /* return the buffer to the pool */
709 GST_CAT_LOG (GST_CAT_BUFFER, "release %p to pool %p", buffer, pool);
710 gst_buffer_pool_release_buffer (pool, buffer);
716 _gst_buffer_free (GstBuffer * buffer)
718 GstMetaItem *walk, *next;
722 g_return_if_fail (buffer != NULL);
724 GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
727 for (walk = GST_BUFFER_META (buffer); walk; walk = next) {
728 GstMeta *meta = &walk->meta;
729 const GstMetaInfo *info = meta->info;
731 /* call free_func if any */
733 info->free_func (meta, buffer);
736 /* and free the slice */
737 g_slice_free1 (ITEM_SIZE (info), walk);
740 /* get the size, when unreffing the memory, we could also unref the buffer
742 msize = GST_BUFFER_SLICE_SIZE (buffer);
744 /* free our memory */
745 len = GST_BUFFER_MEM_LEN (buffer);
746 for (i = 0; i < len; i++) {
747 gst_memory_unlock (GST_BUFFER_MEM_PTR (buffer, i), GST_LOCK_FLAG_EXCLUSIVE);
748 gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
751 /* we set msize to 0 when the buffer is part of the memory block */
754 memset (buffer, 0xff, msize);
756 g_slice_free1 (msize, buffer);
758 gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
763 gst_buffer_init (GstBufferImpl * buffer, gsize size)
765 gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), 0, _gst_buffer_type,
766 (GstMiniObjectCopyFunction) _gst_buffer_copy,
767 (GstMiniObjectDisposeFunction) _gst_buffer_dispose,
768 (GstMiniObjectFreeFunction) _gst_buffer_free);
770 GST_BUFFER_SLICE_SIZE (buffer) = size;
772 GST_BUFFER (buffer)->pool = NULL;
773 GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
774 GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
775 GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
776 GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
777 GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
779 GST_BUFFER_MEM_LEN (buffer) = 0;
780 GST_BUFFER_META (buffer) = NULL;
786 * Creates a newly allocated buffer without any data.
790 * Returns: (transfer full): the new #GstBuffer.
793 gst_buffer_new (void)
795 GstBufferImpl *newbuf;
797 newbuf = g_slice_new (GstBufferImpl);
798 GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
800 gst_buffer_init (newbuf, sizeof (GstBufferImpl));
802 return GST_BUFFER_CAST (newbuf);
806 * gst_buffer_new_allocate:
807 * @allocator: (transfer none) (allow-none): the #GstAllocator to use, or %NULL to use the
809 * @size: the size in bytes of the new buffer's data.
810 * @params: (transfer none) (allow-none): optional parameters
812 * Tries to create a newly allocated buffer with data of the given size and
813 * extra parameters from @allocator. If the requested amount of memory can't be
814 * allocated, %NULL will be returned. The allocated buffer memory is not cleared.
816 * When @allocator is %NULL, the default memory allocator will be used.
818 * Note that when @size == 0, the buffer will not have memory associated with it.
822 * Returns: (transfer full) (nullable): a new #GstBuffer, or %NULL if
823 * the memory couldn't be allocated.
826 gst_buffer_new_allocate (GstAllocator * allocator, gsize size,
827 GstAllocationParams * params)
838 mem = gst_allocator_alloc (allocator, size, params);
839 if (G_UNLIKELY (mem == NULL))
845 newbuf = gst_buffer_new ();
848 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
849 _memory_add (newbuf, -1, mem);
852 GST_CAT_LOG (GST_CAT_BUFFER,
853 "new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
858 asize = sizeof (GstBufferImpl) + size;
859 data = g_slice_alloc (asize);
860 if (G_UNLIKELY (data == NULL))
863 newbuf = GST_BUFFER_CAST (data);
865 gst_buffer_init ((GstBufferImpl *) data, asize);
867 mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
869 _memory_add (newbuf, -1, mem, TRUE);
874 /* allocate memory and buffer, it might be interesting to do this but there
875 * are many complications. We need to keep the memory mapped to access the
876 * buffer fields and the memory for the buffer might be just very slow. We
877 * also need to do some more magic to get the alignment right. */
878 asize = sizeof (GstBufferImpl) + size;
879 mem = gst_allocator_alloc (allocator, asize, align);
880 if (G_UNLIKELY (mem == NULL))
883 /* map the data part and init the buffer in it, set the buffer size to 0 so
884 * that a finalize won't free the buffer */
885 data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
886 gst_buffer_init ((GstBufferImpl *) data, 0);
887 gst_memory_unmap (mem);
889 /* strip off the buffer */
890 gst_memory_resize (mem, sizeof (GstBufferImpl), size);
892 newbuf = GST_BUFFER_CAST (data);
893 GST_BUFFER_BUFMEM (newbuf) = mem;
896 _memory_add (newbuf, -1, gst_memory_ref (mem), TRUE);
898 GST_BUFFER_FLAG_UNSET (newbuf, GST_BUFFER_FLAG_TAG_MEMORY);
905 GST_CAT_WARNING (GST_CAT_BUFFER,
906 "failed to allocate %" G_GSIZE_FORMAT " bytes", size);
912 * gst_buffer_new_wrapped_full:
913 * @flags: #GstMemoryFlags
914 * @data: (array length=size) (element-type guint8) (transfer none): data to wrap
915 * @maxsize: allocated size of @data
916 * @offset: offset in @data
917 * @size: size of valid data
918 * @user_data: (allow-none): user_data
919 * @notify: (allow-none) (scope async) (closure user_data): called with @user_data when the memory is freed
921 * Allocate a new buffer that wraps the given memory. @data must point to
922 * @maxsize of memory, the wrapped buffer will have the region from @offset and
925 * When the buffer is destroyed, @notify will be called with @user_data.
927 * The prefix/padding must be filled with 0 if @flags contains
928 * #GST_MEMORY_FLAG_ZERO_PREFIXED and #GST_MEMORY_FLAG_ZERO_PADDED respectively.
930 * Returns: (transfer full): a new #GstBuffer
933 gst_buffer_new_wrapped_full (GstMemoryFlags flags, gpointer data,
934 gsize maxsize, gsize offset, gsize size, gpointer user_data,
935 GDestroyNotify notify)
940 newbuf = gst_buffer_new ();
942 gst_memory_new_wrapped (flags, data, maxsize, offset, size, user_data,
944 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
945 _memory_add (newbuf, -1, mem);
946 GST_BUFFER_FLAG_UNSET (newbuf, GST_BUFFER_FLAG_TAG_MEMORY);
952 * gst_buffer_new_wrapped:
953 * @data: (array length=size) (element-type guint8) (transfer full): data to wrap
954 * @size: allocated size of @data
956 * Creates a new buffer that wraps the given @data. The memory will be freed
957 * with g_free and will be marked writable.
961 * Returns: (transfer full): a new #GstBuffer
964 gst_buffer_new_wrapped (gpointer data, gsize size)
966 return gst_buffer_new_wrapped_full (0, data, size, 0, size, data, g_free);
970 * gst_buffer_n_memory:
971 * @buffer: a #GstBuffer.
973 * Get the amount of memory blocks that this buffer has. This amount is never
974 * larger than what gst_buffer_get_max_memory() returns.
976 * Returns: the number of memory blocks this buffer is made of.
979 gst_buffer_n_memory (GstBuffer * buffer)
981 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
983 return GST_BUFFER_MEM_LEN (buffer);
987 * gst_buffer_prepend_memory:
988 * @buffer: a #GstBuffer.
989 * @mem: (transfer full): a #GstMemory.
991 * Prepend the memory block @mem to @buffer. This function takes
992 * ownership of @mem and thus doesn't increase its refcount.
994 * This function is identical to gst_buffer_insert_memory() with an index of 0.
995 * See gst_buffer_insert_memory() for more details.
998 gst_buffer_prepend_memory (GstBuffer * buffer, GstMemory * mem)
1000 gst_buffer_insert_memory (buffer, 0, mem);
1004 * gst_buffer_append_memory:
1005 * @buffer: a #GstBuffer.
1006 * @mem: (transfer full): a #GstMemory.
1008 * Append the memory block @mem to @buffer. This function takes
1009 * ownership of @mem and thus doesn't increase its refcount.
1011 * This function is identical to gst_buffer_insert_memory() with an index of -1.
1012 * See gst_buffer_insert_memory() for more details.
1015 gst_buffer_append_memory (GstBuffer * buffer, GstMemory * mem)
1017 gst_buffer_insert_memory (buffer, -1, mem);
1021 * gst_buffer_insert_memory:
1022 * @buffer: a #GstBuffer.
1023 * @idx: the index to add the memory at, or -1 to append it to the end
1024 * @mem: (transfer full): a #GstMemory.
1026 * Insert the memory block @mem to @buffer at @idx. This function takes ownership
1027 * of @mem and thus doesn't increase its refcount.
1029 * Only gst_buffer_get_max_memory() can be added to a buffer. If more memory is
1030 * added, existing memory blocks will automatically be merged to make room for
1034 gst_buffer_insert_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
1038 g_return_if_fail (GST_IS_BUFFER (buffer));
1039 g_return_if_fail (gst_buffer_is_writable (buffer));
1040 g_return_if_fail (mem != NULL);
1041 g_return_if_fail (idx == -1 ||
1042 (idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
1044 tmp = _memory_get_exclusive_reference (mem);
1045 g_return_if_fail (tmp != NULL);
1046 gst_memory_unref (mem);
1047 _memory_add (buffer, idx, tmp);
1051 _get_mapped (GstBuffer * buffer, guint idx, GstMapInfo * info,
1054 GstMemory *mem, *mapped;
1056 mem = gst_memory_ref (GST_BUFFER_MEM_PTR (buffer, idx));
1058 mapped = gst_memory_make_mapped (mem, info, flags);
1060 if (mapped != mem) {
1061 /* memory changed, lock new memory */
1062 gst_memory_lock (mapped, GST_LOCK_FLAG_EXCLUSIVE);
1063 GST_BUFFER_MEM_PTR (buffer, idx) = mapped;
1064 /* unlock old memory */
1065 gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
1066 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1068 gst_memory_unref (mem);
1074 * gst_buffer_peek_memory:
1075 * @buffer: a #GstBuffer.
1078 * Get the memory block at @idx in @buffer. The memory block stays valid until
1079 * the memory block in @buffer is removed, replaced or merged, typically with
1080 * any call that modifies the memory in @buffer.
1082 * Returns: (transfer none): the #GstMemory at @idx.
1085 gst_buffer_peek_memory (GstBuffer * buffer, guint idx)
1089 g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
1090 len = GST_BUFFER_MEM_LEN (buffer);
1091 g_return_val_if_fail (idx < len, NULL);
1093 return GST_BUFFER_MEM_PTR (buffer, idx);
1097 * gst_buffer_get_memory:
1098 * @buffer: a #GstBuffer.
1101 * Get the memory block at index @idx in @buffer.
1103 * Returns: (transfer full): a #GstMemory that contains the data of the
1104 * memory block at @idx. Use gst_memory_unref () after usage.
1107 gst_buffer_get_memory (GstBuffer * buffer, guint idx)
1109 return gst_buffer_get_memory_range (buffer, idx, 1);
1113 * gst_buffer_get_all_memory:
1114 * @buffer: a #GstBuffer.
1116 * Get all the memory block in @buffer. The memory blocks will be merged
1117 * into one large #GstMemory.
1119 * Returns: (transfer full): a #GstMemory that contains the merged memory.
1120 * Use gst_memory_unref () after usage.
1123 gst_buffer_get_all_memory (GstBuffer * buffer)
1125 return gst_buffer_get_memory_range (buffer, 0, -1);
1129 * gst_buffer_get_memory_range:
1130 * @buffer: a #GstBuffer.
1134 * Get @length memory blocks in @buffer starting at @idx. The memory blocks will
1135 * be merged into one large #GstMemory.
1137 * If @length is -1, all memory starting from @idx is merged.
1139 * Returns: (transfer full): a #GstMemory that contains the merged data of @length
1140 * blocks starting at @idx. Use gst_memory_unref () after usage.
1143 gst_buffer_get_memory_range (GstBuffer * buffer, guint idx, gint length)
1147 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1149 g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
1150 len = GST_BUFFER_MEM_LEN (buffer);
1151 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1152 (length == -1 && idx < len) || (length > 0 && length + idx <= len), NULL);
1157 return _get_merged_memory (buffer, idx, length);
1161 * gst_buffer_replace_memory:
1162 * @buffer: a #GstBuffer.
1164 * @mem: (transfer full): a #GstMemory
1166 * Replaces the memory block at index @idx in @buffer with @mem.
1169 gst_buffer_replace_memory (GstBuffer * buffer, guint idx, GstMemory * mem)
1171 gst_buffer_replace_memory_range (buffer, idx, 1, mem);
1175 * gst_buffer_replace_all_memory:
1176 * @buffer: a #GstBuffer.
1177 * @mem: (transfer full): a #GstMemory
1179 * Replaces all memory in @buffer with @mem.
1182 gst_buffer_replace_all_memory (GstBuffer * buffer, GstMemory * mem)
1184 gst_buffer_replace_memory_range (buffer, 0, -1, mem);
1188 * gst_buffer_replace_memory_range:
1189 * @buffer: a #GstBuffer.
1191 * @length: a length should not be 0
1192 * @mem: (transfer full): a #GstMemory
1194 * Replaces @length memory blocks in @buffer starting at @idx with @mem.
1196 * If @length is -1, all memory starting from @idx will be removed and
1197 * replaced with @mem.
1199 * @buffer should be writable.
1202 gst_buffer_replace_memory_range (GstBuffer * buffer, guint idx, gint length,
1207 g_return_if_fail (GST_IS_BUFFER (buffer));
1208 g_return_if_fail (gst_buffer_is_writable (buffer));
1210 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d, %p", idx, length, mem);
1212 len = GST_BUFFER_MEM_LEN (buffer);
1213 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1214 (length == -1 && idx < len) || (length > 0 && length + idx <= len));
1219 _replace_memory (buffer, len, idx, length, mem);
1223 * gst_buffer_remove_memory:
1224 * @buffer: a #GstBuffer.
1227 * Remove the memory block in @b at index @i.
1230 gst_buffer_remove_memory (GstBuffer * buffer, guint idx)
1232 gst_buffer_remove_memory_range (buffer, idx, 1);
1236 * gst_buffer_remove_all_memory:
1237 * @buffer: a #GstBuffer.
1239 * Remove all the memory blocks in @buffer.
1242 gst_buffer_remove_all_memory (GstBuffer * buffer)
1244 gst_buffer_remove_memory_range (buffer, 0, -1);
1248 * gst_buffer_remove_memory_range:
1249 * @buffer: a #GstBuffer.
1253 * Remove @length memory blocks in @buffer starting from @idx.
1255 * @length can be -1, in which case all memory starting from @idx is removed.
1258 gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, gint length)
1262 g_return_if_fail (GST_IS_BUFFER (buffer));
1263 g_return_if_fail (gst_buffer_is_writable (buffer));
1265 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1267 len = GST_BUFFER_MEM_LEN (buffer);
1268 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1269 (length == -1 && idx < len) || length + idx <= len);
1274 _replace_memory (buffer, len, idx, length, NULL);
1278 * gst_buffer_find_memory:
1279 * @buffer: a #GstBuffer.
1280 * @offset: an offset
1282 * @idx: (out): pointer to index
1283 * @length: (out): pointer to length
1284 * @skip: (out): pointer to skip
1286 * Find the memory blocks that span @size bytes starting from @offset
1289 * When this function returns %TRUE, @idx will contain the index of the first
1290 * memory block where the byte for @offset can be found and @length contains the
1291 * number of memory blocks containing the @size remaining bytes. @skip contains
1292 * the number of bytes to skip in the memory block at @idx to get to the byte
1295 * @size can be -1 to get all the memory blocks after @idx.
1297 * Returns: %TRUE when @size bytes starting from @offset could be found in
1298 * @buffer and @idx, @length and @skip will be filled.
1301 gst_buffer_find_memory (GstBuffer * buffer, gsize offset, gsize size,
1302 guint * idx, guint * length, gsize * skip)
1304 guint i, len, found;
1306 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1307 g_return_val_if_fail (idx != NULL, FALSE);
1308 g_return_val_if_fail (length != NULL, FALSE);
1309 g_return_val_if_fail (skip != NULL, FALSE);
1311 len = GST_BUFFER_MEM_LEN (buffer);
1314 for (i = 0; i < len; i++) {
1318 mem = GST_BUFFER_MEM_PTR (buffer, i);
1319 s = gst_memory_get_sizes (mem, NULL, NULL);
1322 /* block before offset, or empty block, skip */
1325 /* block after offset */
1327 /* first block, remember index and offset */
1331 /* return remaining blocks */
1338 /* count the amount of found bytes */
1340 if (found >= size) {
1341 /* we have enough bytes */
1342 *length = i - *idx + 1;
1351 * gst_buffer_is_memory_range_writable:
1352 * @buffer: a #GstBuffer.
1354 * @length: a length should not be 0
1356 * Check if @length memory blocks in @buffer starting from @idx are writable.
1358 * @length can be -1 to check all the memory blocks after @idx.
1360 * Note that this function does not check if @buffer is writable, use
1361 * gst_buffer_is_writable() to check that if needed.
1363 * Returns: %TRUE if the memory range is writable
1368 gst_buffer_is_memory_range_writable (GstBuffer * buffer, guint idx, gint length)
1372 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1374 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1376 len = GST_BUFFER_MEM_LEN (buffer);
1377 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1378 (length == -1 && idx < len) || (length > 0 && length + idx <= len),
1386 for (i = 0; i < len; i++) {
1387 if (!gst_memory_is_writable (GST_BUFFER_MEM_PTR (buffer, i + idx)))
1394 * gst_buffer_is_all_memory_writable:
1395 * @buffer: a #GstBuffer.
1397 * Check if all memory blocks in @buffer are writable.
1399 * Note that this function does not check if @buffer is writable, use
1400 * gst_buffer_is_writable() to check that if needed.
1402 * Returns: %TRUE if all memory blocks in @buffer are writable
1407 gst_buffer_is_all_memory_writable (GstBuffer * buffer)
1409 return gst_buffer_is_memory_range_writable (buffer, 0, -1);
1413 * gst_buffer_get_sizes:
1414 * @buffer: a #GstBuffer.
1415 * @offset: (out) (allow-none): a pointer to the offset
1416 * @maxsize: (out) (allow-none): a pointer to the maxsize
1418 * Get the total size of the memory blocks in @b.
1420 * When not %NULL, @offset will contain the offset of the data in the
1421 * first memory block in @buffer and @maxsize will contain the sum of
1422 * the size and @offset and the amount of extra padding on the last
1423 * memory block. @offset and @maxsize can be used to resize the
1424 * buffer memory blocks with gst_buffer_resize().
1426 * Returns: total size of the memory blocks in @buffer.
1429 gst_buffer_get_sizes (GstBuffer * buffer, gsize * offset, gsize * maxsize)
1431 return gst_buffer_get_sizes_range (buffer, 0, -1, offset, maxsize);
1435 * gst_buffer_get_size:
1436 * @buffer: a #GstBuffer.
1438 * Get the total size of the memory blocks in @buffer.
1440 * Returns: total size of the memory blocks in @buffer.
1443 gst_buffer_get_size (GstBuffer * buffer)
1445 return gst_buffer_get_sizes_range (buffer, 0, -1, NULL, NULL);
1449 * gst_buffer_get_sizes_range:
1450 * @buffer: a #GstBuffer.
1453 * @offset: (out) (allow-none): a pointer to the offset
1454 * @maxsize: (out) (allow-none): a pointer to the maxsize
1456 * Get the total size of @length memory blocks stating from @idx in @buffer.
1458 * When not %NULL, @offset will contain the offset of the data in the
1459 * memory block in @buffer at @idx and @maxsize will contain the sum of the size
1460 * and @offset and the amount of extra padding on the memory block at @idx +
1462 * @offset and @maxsize can be used to resize the buffer memory blocks with
1463 * gst_buffer_resize_range().
1465 * Returns: total size of @length memory blocks starting at @idx in @buffer.
1468 gst_buffer_get_sizes_range (GstBuffer * buffer, guint idx, gint length,
1469 gsize * offset, gsize * maxsize)
1475 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1476 len = GST_BUFFER_MEM_LEN (buffer);
1477 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1478 (length == -1 && idx < len) || (length + idx <= len), 0);
1483 if (G_LIKELY (length == 1)) {
1485 mem = GST_BUFFER_MEM_PTR (buffer, idx);
1486 size = gst_memory_get_sizes (mem, offset, maxsize);
1492 size = offs = extra = 0;
1493 for (i = idx; i < end; i++) {
1496 mem = GST_BUFFER_MEM_PTR (buffer, i);
1497 s = gst_memory_get_sizes (mem, &o, &ms);
1501 /* first size, take accumulated data before as the offset */
1505 /* save the amount of data after this block */
1506 extra = ms - (o + s);
1508 /* empty block, add as extra */
1515 *maxsize = offs + size + extra;
1521 * gst_buffer_resize:
1522 * @buffer: a #GstBuffer.
1523 * @offset: the offset adjustment
1524 * @size: the new size or -1 to just adjust the offset
1526 * Set the offset and total size of the memory blocks in @buffer.
1529 gst_buffer_resize (GstBuffer * buffer, gssize offset, gssize size)
1531 gst_buffer_resize_range (buffer, 0, -1, offset, size);
1535 * gst_buffer_set_size:
1536 * @buffer: a #GstBuffer.
1537 * @size: the new size
1539 * Set the total size of the memory blocks in @buffer.
1542 gst_buffer_set_size (GstBuffer * buffer, gssize size)
1544 gst_buffer_resize_range (buffer, 0, -1, 0, size);
1548 * gst_buffer_resize_range:
1549 * @buffer: a #GstBuffer.
1552 * @offset: the offset adjustment
1553 * @size: the new size or -1 to just adjust the offset
1555 * Set the total size of the @length memory blocks starting at @idx in
1558 * Returns: %TRUE if resizing succeeded, %FALSE otherwise.
1561 gst_buffer_resize_range (GstBuffer * buffer, guint idx, gint length,
1562 gssize offset, gssize size)
1565 gsize bsize, bufsize, bufoffs, bufmax;
1567 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
1568 g_return_val_if_fail (size >= -1, FALSE);
1570 len = GST_BUFFER_MEM_LEN (buffer);
1571 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1572 (length == -1 && idx < len) || (length + idx <= len), FALSE);
1577 bufsize = gst_buffer_get_sizes_range (buffer, idx, length, &bufoffs, &bufmax);
1579 GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
1580 " size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
1581 G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
1583 /* we can't go back further than the current offset or past the end of the
1585 g_return_val_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
1586 && bufoffs + offset <= bufmax), FALSE);
1588 g_return_val_if_fail (bufsize >= offset, FALSE);
1589 size = bufsize - offset;
1591 g_return_val_if_fail (bufmax >= bufoffs + offset + size, FALSE);
1594 if (offset == 0 && size == bufsize)
1599 for (i = idx; i < end; i++) {
1603 mem = GST_BUFFER_MEM_PTR (buffer, i);
1604 bsize = gst_memory_get_sizes (mem, NULL, NULL);
1607 /* last buffer always gets resized to the remaining size */
1610 /* shrink buffers before the offset */
1611 else if ((gssize) bsize <= offset) {
1613 noffs = offset - bsize;
1616 /* clip other buffers */
1618 left = MIN (bsize - offset, size);
1620 if (offset != 0 || left != bsize) {
1621 if (gst_memory_is_writable (mem)) {
1622 gst_memory_resize (mem, offset, left);
1624 GstMemory *newmem = NULL;
1626 if (!GST_MEMORY_IS_NO_SHARE (mem))
1627 newmem = gst_memory_share (mem, offset, left);
1630 newmem = gst_memory_copy (mem, offset, left);
1635 gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
1636 GST_BUFFER_MEM_PTR (buffer, i) = newmem;
1637 gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
1638 gst_memory_unref (mem);
1640 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1653 * @buffer: a #GstBuffer.
1654 * @info: (out): info about the mapping
1655 * @flags: flags for the mapping
1657 * This function fills @info with the #GstMapInfo of all merged memory
1658 * blocks in @buffer.
1660 * @flags describe the desired access of the memory. When @flags is
1661 * #GST_MAP_WRITE, @buffer should be writable (as returned from
1662 * gst_buffer_is_writable()).
1664 * When @buffer is writable but the memory isn't, a writable copy will
1665 * automatically be created and returned. The readonly copy of the
1666 * buffer memory will then also be replaced with this writable copy.
1668 * The memory in @info should be unmapped with gst_buffer_unmap() after
1671 * Returns: %TRUE if the map succeeded and @info contains valid data.
1674 gst_buffer_map (GstBuffer * buffer, GstMapInfo * info, GstMapFlags flags)
1676 return gst_buffer_map_range (buffer, 0, -1, info, flags);
1680 * gst_buffer_map_range:
1681 * @buffer: a #GstBuffer.
1684 * @info: (out): info about the mapping
1685 * @flags: flags for the mapping
1687 * This function fills @info with the #GstMapInfo of @length merged memory blocks
1688 * starting at @idx in @buffer. When @length is -1, all memory blocks starting
1689 * from @idx are merged and mapped.
1691 * @flags describe the desired access of the memory. When @flags is
1692 * #GST_MAP_WRITE, @buffer should be writable (as returned from
1693 * gst_buffer_is_writable()).
1695 * When @buffer is writable but the memory isn't, a writable copy will
1696 * automatically be created and returned. The readonly copy of the buffer memory
1697 * will then also be replaced with this writable copy.
1699 * The memory in @info should be unmapped with gst_buffer_unmap() after usage.
1701 * Returns: %TRUE if the map succeeded and @info contains valid
1705 gst_buffer_map_range (GstBuffer * buffer, guint idx, gint length,
1706 GstMapInfo * info, GstMapFlags flags)
1708 GstMemory *mem, *nmem;
1709 gboolean write, writable;
1712 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1713 g_return_val_if_fail (info != NULL, FALSE);
1714 len = GST_BUFFER_MEM_LEN (buffer);
1715 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1716 (length == -1 && idx < len) || (length > 0
1717 && length + idx <= len), FALSE);
1719 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %d, flags %04x",
1720 buffer, idx, length, flags);
1722 write = (flags & GST_MAP_WRITE) != 0;
1723 writable = gst_buffer_is_writable (buffer);
1725 /* check if we can write when asked for write access */
1726 if (G_UNLIKELY (write && !writable))
1732 mem = _get_merged_memory (buffer, idx, length);
1733 if (G_UNLIKELY (mem == NULL))
1736 /* now try to map */
1737 nmem = gst_memory_make_mapped (mem, info, flags);
1738 if (G_UNLIKELY (nmem == NULL))
1741 /* if we merged or when the map returned a different memory, we try to replace
1742 * the memory in the buffer */
1743 if (G_UNLIKELY (length > 1 || nmem != mem)) {
1744 /* if the buffer is writable, replace the memory */
1746 _replace_memory (buffer, len, idx, length, gst_memory_ref (nmem));
1749 GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
1750 "temporary mapping for memory %p in buffer %p", nmem, buffer);
1759 GST_WARNING_OBJECT (buffer, "write map requested on non-writable buffer");
1760 g_critical ("write map requested on non-writable buffer");
1761 memset (info, 0, sizeof (GstMapInfo));
1766 /* empty buffer, we need to return NULL */
1767 GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
1768 memset (info, 0, sizeof (GstMapInfo));
1773 GST_DEBUG_OBJECT (buffer, "cannot map memory");
1774 memset (info, 0, sizeof (GstMapInfo));
1781 * @buffer: a #GstBuffer.
1782 * @info: a #GstMapInfo
1784 * Release the memory previously mapped with gst_buffer_map().
1787 gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
1789 g_return_if_fail (GST_IS_BUFFER (buffer));
1790 g_return_if_fail (info != NULL);
1792 /* we need to check for NULL, it is possible that we tried to map a buffer
1793 * without memory and we should be able to unmap that fine */
1794 if (G_LIKELY (info->memory)) {
1795 gst_memory_unmap (info->memory, info);
1796 gst_memory_unref (info->memory);
1802 * @buffer: a #GstBuffer.
1803 * @offset: the offset to fill
1804 * @src: (array length=size) (element-type guint8): the source address
1805 * @size: the size to fill
1807 * Copy @size bytes from @src to @buffer at @offset.
1809 * Returns: The amount of bytes copied. This value can be lower than @size
1810 * when @buffer did not contain enough data.
1813 gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
1817 const guint8 *ptr = src;
1819 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1820 g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1821 g_return_val_if_fail (src != NULL || size == 0, 0);
1823 GST_CAT_LOG (GST_CAT_BUFFER,
1824 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1827 len = GST_BUFFER_MEM_LEN (buffer);
1830 for (i = 0; i < len && left > 0; i++) {
1835 mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1836 if (info.size > offset) {
1837 /* we have enough */
1838 tocopy = MIN (info.size - offset, left);
1839 memcpy ((guint8 *) info.data + offset, ptr, tocopy);
1844 /* offset past buffer, skip */
1845 offset -= info.size;
1847 gst_memory_unmap (mem, &info);
1853 * gst_buffer_extract:
1854 * @buffer: a #GstBuffer.
1855 * @offset: the offset to extract
1856 * @dest: the destination address
1857 * @size: the size to extract
1859 * Copy @size bytes starting from @offset in @buffer to @dest.
1861 * Returns: The amount of bytes extracted. This value can be lower than @size
1862 * when @buffer did not contain enough data.
1865 gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
1870 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1871 g_return_val_if_fail (dest != NULL, 0);
1873 GST_CAT_LOG (GST_CAT_BUFFER,
1874 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1877 len = GST_BUFFER_MEM_LEN (buffer);
1880 for (i = 0; i < len && left > 0; i++) {
1885 mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1886 if (info.size > offset) {
1887 /* we have enough */
1888 tocopy = MIN (info.size - offset, left);
1889 memcpy (ptr, (guint8 *) info.data + offset, tocopy);
1894 /* offset past buffer, skip */
1895 offset -= info.size;
1897 gst_memory_unmap (mem, &info);
1903 * gst_buffer_memcmp:
1904 * @buffer: a #GstBuffer.
1905 * @offset: the offset in @buffer
1906 * @mem: (array length=size) (element-type guint8): the memory to compare
1907 * @size: the size to compare
1909 * Compare @size bytes starting from @offset in @buffer with the memory in @mem.
1911 * Returns: 0 if the memory is equal.
1914 gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
1918 const guint8 *ptr = mem;
1921 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1922 g_return_val_if_fail (mem != NULL, 0);
1924 GST_CAT_LOG (GST_CAT_BUFFER,
1925 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1928 if (G_UNLIKELY (gst_buffer_get_size (buffer) < offset + size))
1931 len = GST_BUFFER_MEM_LEN (buffer);
1933 for (i = 0; i < len && size > 0 && res == 0; i++) {
1938 mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1939 if (info.size > offset) {
1940 /* we have enough */
1941 tocmp = MIN (info.size - offset, size);
1942 res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
1947 /* offset past buffer, skip */
1948 offset -= info.size;
1950 gst_memory_unmap (mem, &info);
1956 * gst_buffer_memset:
1957 * @buffer: a #GstBuffer.
1958 * @offset: the offset in @buffer
1959 * @val: the value to set
1960 * @size: the size to set
1962 * Fill @buf with @size bytes with @val starting from @offset.
1964 * Returns: The amount of bytes filled. This value can be lower than @size
1965 * when @buffer did not contain enough data.
1968 gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
1972 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1973 g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1975 GST_CAT_LOG (GST_CAT_BUFFER,
1976 "buffer %p, offset %" G_GSIZE_FORMAT ", val %02x, size %" G_GSIZE_FORMAT,
1977 buffer, offset, val, size);
1979 len = GST_BUFFER_MEM_LEN (buffer);
1982 for (i = 0; i < len && left > 0; i++) {
1987 mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1988 if (info.size > offset) {
1989 /* we have enough */
1990 toset = MIN (info.size - offset, left);
1991 memset ((guint8 *) info.data + offset, val, toset);
1995 /* offset past buffer, skip */
1996 offset -= info.size;
1998 gst_memory_unmap (mem, &info);
2004 * gst_buffer_copy_region:
2005 * @parent: a #GstBuffer.
2006 * @flags: the #GstBufferCopyFlags
2007 * @offset: the offset into parent #GstBuffer at which the new sub-buffer
2009 * @size: the size of the new #GstBuffer sub-buffer, in bytes. If -1, all
2012 * Creates a sub-buffer from @parent at @offset and @size.
2013 * This sub-buffer uses the actual memory space of the parent buffer.
2014 * This function will copy the offset and timestamp fields when the
2015 * offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and
2016 * #GST_BUFFER_OFFSET_NONE.
2017 * If @offset equals 0 and @size equals the total size of @buffer, the
2018 * duration and offset end fields are also copied. If not they will be set
2019 * to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
2023 * Returns: (transfer full): the new #GstBuffer or %NULL if the arguments were
2027 gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
2028 gsize offset, gsize size)
2032 g_return_val_if_fail (buffer != NULL, NULL);
2034 /* create the new buffer */
2035 copy = gst_buffer_new ();
2037 GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
2038 "-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
2040 if (!gst_buffer_copy_into (copy, buffer, flags, offset, size))
2041 gst_buffer_replace (©, NULL);
2047 * gst_buffer_append:
2048 * @buf1: (transfer full): the first source #GstBuffer to append.
2049 * @buf2: (transfer full): the second source #GstBuffer to append.
2051 * Append all the memory from @buf2 to @buf1. The result buffer will contain a
2052 * concatenation of the memory of @buf1 and @buf2.
2054 * Returns: (transfer full): the new #GstBuffer that contains the memory
2055 * of the two source buffers.
2058 gst_buffer_append (GstBuffer * buf1, GstBuffer * buf2)
2060 return gst_buffer_append_region (buf1, buf2, 0, -1);
2064 * gst_buffer_append_region:
2065 * @buf1: (transfer full): the first source #GstBuffer to append.
2066 * @buf2: (transfer full): the second source #GstBuffer to append.
2067 * @offset: the offset in @buf2
2068 * @size: the size or -1 of @buf2
2070 * Append @size bytes at @offset from @buf2 to @buf1. The result buffer will
2071 * contain a concatenation of the memory of @buf1 and the requested region of
2074 * Returns: (transfer full): the new #GstBuffer that contains the memory
2075 * of the two source buffers.
2078 gst_buffer_append_region (GstBuffer * buf1, GstBuffer * buf2, gssize offset,
2083 g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
2084 g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
2086 buf1 = gst_buffer_make_writable (buf1);
2087 buf2 = gst_buffer_make_writable (buf2);
2089 gst_buffer_resize (buf2, offset, size);
2091 len = GST_BUFFER_MEM_LEN (buf2);
2092 for (i = 0; i < len; i++) {
2095 mem = GST_BUFFER_MEM_PTR (buf2, i);
2096 GST_BUFFER_MEM_PTR (buf2, i) = NULL;
2097 _memory_add (buf1, -1, mem);
2100 GST_BUFFER_MEM_LEN (buf2) = 0;
2101 GST_BUFFER_FLAG_SET (buf2, GST_BUFFER_FLAG_TAG_MEMORY);
2102 gst_buffer_unref (buf2);
2108 * gst_buffer_get_meta:
2109 * @buffer: a #GstBuffer
2110 * @api: the #GType of an API
2112 * Get the metadata for @api on buffer. When there is no such metadata, %NULL is
2113 * returned. If multiple metadata with the given @api are attached to this
2114 * buffer only the first one is returned. To handle multiple metadata with a
2115 * given API use gst_buffer_iterate_meta() or gst_buffer_foreach_meta() instead
2116 * and check the meta->info.api member for the API type.
2118 * Returns: (transfer none) (nullable): the metadata for @api on
2122 gst_buffer_get_meta (GstBuffer * buffer, GType api)
2125 GstMeta *result = NULL;
2127 g_return_val_if_fail (buffer != NULL, NULL);
2128 g_return_val_if_fail (api != 0, NULL);
2130 /* find GstMeta of the requested API */
2131 for (item = GST_BUFFER_META (buffer); item; item = item->next) {
2132 GstMeta *meta = &item->meta;
2133 if (meta->info->api == api) {
2142 * gst_buffer_add_meta:
2143 * @buffer: a #GstBuffer
2144 * @info: a #GstMetaInfo
2145 * @params: params for @info
2147 * Add metadata for @info to @buffer using the parameters in @params.
2149 * Returns: (transfer none): the metadata for the api in @info on @buffer.
2152 gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
2156 GstMeta *result = NULL;
2159 g_return_val_if_fail (buffer != NULL, NULL);
2160 g_return_val_if_fail (info != NULL, NULL);
2161 g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
2163 /* create a new slice */
2164 size = ITEM_SIZE (info);
2165 /* We warn in gst_meta_register() about metas without
2166 * init function but let's play safe here and prevent
2167 * uninitialized memory
2169 if (!info->init_func)
2170 item = g_slice_alloc0 (size);
2172 item = g_slice_alloc (size);
2173 result = &item->meta;
2174 result->info = info;
2175 result->flags = GST_META_FLAG_NONE;
2176 GST_CAT_DEBUG (GST_CAT_BUFFER,
2177 "alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
2178 g_type_name (info->type), info->size);
2180 /* call the init_func when needed */
2181 if (info->init_func)
2182 if (!info->init_func (result, params, buffer))
2185 /* and add to the list of metadata */
2186 item->next = GST_BUFFER_META (buffer);
2187 GST_BUFFER_META (buffer) = item;
2193 g_slice_free1 (size, item);
2199 * gst_buffer_remove_meta:
2200 * @buffer: a #GstBuffer
2203 * Remove the metadata for @meta on @buffer.
2205 * Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
2206 * metadata was on @buffer.
2209 gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
2211 GstMetaItem *walk, *prev;
2213 g_return_val_if_fail (buffer != NULL, FALSE);
2214 g_return_val_if_fail (meta != NULL, FALSE);
2215 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
2216 g_return_val_if_fail (!GST_META_FLAG_IS_SET (meta, GST_META_FLAG_LOCKED),
2219 /* find the metadata and delete */
2220 prev = GST_BUFFER_META (buffer);
2221 for (walk = prev; walk; walk = walk->next) {
2222 GstMeta *m = &walk->meta;
2224 const GstMetaInfo *info = meta->info;
2226 /* remove from list */
2227 if (GST_BUFFER_META (buffer) == walk)
2228 GST_BUFFER_META (buffer) = walk->next;
2230 prev->next = walk->next;
2231 /* call free_func if any */
2232 if (info->free_func)
2233 info->free_func (m, buffer);
2235 /* and free the slice */
2236 g_slice_free1 (ITEM_SIZE (info), walk);
2241 return walk != NULL;
2245 * gst_buffer_iterate_meta: (skip)
2246 * @buffer: a #GstBuffer
2247 * @state: an opaque state pointer
2249 * Retrieve the next #GstMeta after @current. If @state points
2250 * to %NULL, the first metadata is returned.
2252 * @state will be updated with an opaque state pointer
2254 * Returns: (transfer none) (nullable): The next #GstMeta or %NULL
2255 * when there are no more items.
2258 gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
2262 g_return_val_if_fail (buffer != NULL, NULL);
2263 g_return_val_if_fail (state != NULL, NULL);
2265 meta = (GstMetaItem **) state;
2267 /* state NULL, move to first item */
2268 *meta = GST_BUFFER_META (buffer);
2270 /* state !NULL, move to next item in list */
2271 *meta = (*meta)->next;
2274 return &(*meta)->meta;
2280 * gst_buffer_iterate_meta_filtered: (skip)
2281 * @buffer: a #GstBuffer
2282 * @state: an opaque state pointer
2283 * @meta_api_type: only return #GstMeta of this type
2285 * Retrieve the next #GstMeta of type @meta_api_type after the current one
2286 * according to @state. If @state points to %NULL, the first metadata of
2287 * type @meta_api_type is returned.
2289 * @state will be updated with an opaque state pointer
2291 * Returns: (transfer none) (nullable): The next #GstMeta of type
2292 * @meta_api_type or %NULL when there are no more items.
2297 gst_buffer_iterate_meta_filtered (GstBuffer * buffer, gpointer * state,
2298 GType meta_api_type)
2302 g_return_val_if_fail (buffer != NULL, NULL);
2303 g_return_val_if_fail (state != NULL, NULL);
2305 meta = (GstMetaItem **) state;
2307 /* state NULL, move to first item */
2308 *meta = GST_BUFFER_META (buffer);
2310 /* state !NULL, move to next item in list */
2311 *meta = (*meta)->next;
2313 while (*meta != NULL && (*meta)->meta.info->api != meta_api_type)
2314 *meta = (*meta)->next;
2317 return &(*meta)->meta;
2323 * gst_buffer_foreach_meta:
2324 * @buffer: a #GstBuffer
2325 * @func: (scope call): a #GstBufferForeachMetaFunc to call
2326 * @user_data: (closure): user data passed to @func
2328 * Call @func with @user_data for each meta in @buffer.
2330 * @func can modify the passed meta pointer or its contents. The return value
2331 * of @func define if this function returns or if the remaining metadata items
2332 * in the buffer should be skipped.
2334 * Returns: %FALSE when @func returned %FALSE for one of the metadata.
2337 gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
2340 GstMetaItem *walk, *prev, *next;
2341 gboolean res = TRUE;
2343 g_return_val_if_fail (buffer != NULL, FALSE);
2344 g_return_val_if_fail (func != NULL, FALSE);
2346 /* find the metadata and delete */
2347 prev = GST_BUFFER_META (buffer);
2348 for (walk = prev; walk; walk = next) {
2351 m = new = &walk->meta;
2354 res = func (buffer, &new, user_data);
2357 const GstMetaInfo *info = m->info;
2359 GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
2360 g_type_name (info->type));
2362 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
2363 g_return_val_if_fail (!GST_META_FLAG_IS_SET (m, GST_META_FLAG_LOCKED),
2366 /* remove from list */
2367 if (GST_BUFFER_META (buffer) == walk)
2368 GST_BUFFER_META (buffer) = next;
2372 /* call free_func if any */
2373 if (info->free_func)
2374 info->free_func (m, buffer);
2376 /* and free the slice */
2377 g_slice_free1 (ITEM_SIZE (info), walk);
2386 * gst_buffer_extract_dup:
2387 * @buffer: a #GstBuffer
2388 * @offset: the offset to extract
2389 * @size: the size to extract
2390 * @dest: (array length=dest_size) (element-type guint8) (out): A pointer where
2391 * the destination array will be written.
2392 * @dest_size: (out): A location where the size of @dest can be written
2394 * Extracts a copy of at most @size bytes the data at @offset into
2395 * newly-allocated memory. @dest must be freed using g_free() when done.
2401 gst_buffer_extract_dup (GstBuffer * buffer, gsize offset, gsize size,
2402 gpointer * dest, gsize * dest_size)
2406 real_size = gst_buffer_get_size (buffer);
2408 *dest = g_malloc (MIN (real_size - offset, size));
2410 *dest_size = gst_buffer_extract (buffer, offset, *dest, size);
2413 GST_DEBUG_CATEGORY_STATIC (gst_parent_buffer_meta_debug);
2416 * gst_buffer_add_parent_buffer_meta:
2417 * @buffer: (transfer none): a #GstBuffer
2418 * @ref: (transfer none): a #GstBuffer to ref
2420 * Add a #GstParentBufferMeta to @buffer that holds a reference on
2421 * @ref until the buffer is freed.
2423 * Returns: (transfer none): The #GstParentBufferMeta that was added to the buffer
2427 GstParentBufferMeta *
2428 gst_buffer_add_parent_buffer_meta (GstBuffer * buffer, GstBuffer * ref)
2430 GstParentBufferMeta *meta;
2432 g_return_val_if_fail (GST_IS_BUFFER (ref), NULL);
2435 (GstParentBufferMeta *) gst_buffer_add_meta (buffer,
2436 GST_PARENT_BUFFER_META_INFO, NULL);
2441 meta->buffer = gst_buffer_ref (ref);
2447 _gst_parent_buffer_meta_transform (GstBuffer * dest, GstMeta * meta,
2448 GstBuffer * buffer, GQuark type, gpointer data)
2450 GstParentBufferMeta *dmeta, *smeta;
2452 smeta = (GstParentBufferMeta *) meta;
2454 if (GST_META_TRANSFORM_IS_COPY (type)) {
2455 /* copy over the reference to the parent buffer.
2456 * Usually, this meta means we need to keep the parent buffer
2457 * alive because one of the child memories is in use, which
2458 * might not be the case if memory is deep copied or sub-regioned,
2459 * but we can't tell, so keep the meta */
2460 dmeta = gst_buffer_add_parent_buffer_meta (dest, smeta->buffer);
2464 GST_CAT_DEBUG (gst_parent_buffer_meta_debug,
2465 "copy buffer reference metadata");
2467 /* return FALSE, if transform type is not supported */
2474 _gst_parent_buffer_meta_free (GstParentBufferMeta * parent_meta,
2477 GST_CAT_DEBUG (gst_parent_buffer_meta_debug,
2478 "Dropping reference on buffer %p", parent_meta->buffer);
2479 gst_buffer_unref (parent_meta->buffer);
2483 _gst_parent_buffer_meta_init (GstParentBufferMeta * parent_meta,
2484 gpointer params, GstBuffer * buffer)
2486 static volatile gsize _init;
2488 if (g_once_init_enter (&_init)) {
2489 GST_DEBUG_CATEGORY_INIT (gst_parent_buffer_meta_debug, "parentbuffermeta",
2490 0, "parentbuffermeta");
2491 g_once_init_leave (&_init, 1);
2494 parent_meta->buffer = NULL;
2500 gst_parent_buffer_meta_api_get_type (void)
2502 static volatile GType type = 0;
2503 static const gchar *tags[] = { NULL };
2505 if (g_once_init_enter (&type)) {
2506 GType _type = gst_meta_api_type_register ("GstParentBufferMetaAPI", tags);
2507 g_once_init_leave (&type, _type);
2514 * gst_parent_buffer_meta_get_info:
2516 * Get the global #GstMetaInfo describing the #GstParentBufferMeta meta.
2518 * Returns: (transfer none): The #GstMetaInfo
2523 gst_parent_buffer_meta_get_info (void)
2525 static const GstMetaInfo *meta_info = NULL;
2527 if (g_once_init_enter ((GstMetaInfo **) & meta_info)) {
2528 const GstMetaInfo *meta =
2529 gst_meta_register (gst_parent_buffer_meta_api_get_type (),
2530 "GstParentBufferMeta",
2531 sizeof (GstParentBufferMeta),
2532 (GstMetaInitFunction) _gst_parent_buffer_meta_init,
2533 (GstMetaFreeFunction) _gst_parent_buffer_meta_free,
2534 _gst_parent_buffer_meta_transform);
2535 g_once_init_leave ((GstMetaInfo **) & meta_info, (GstMetaInfo *) meta);