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.
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 #include "gst_private.h"
117 #include "gstbuffer.h"
118 #include "gstbufferpool.h"
120 #include "gstutils.h"
121 #include "gstversion.h"
123 GType _gst_buffer_type = 0;
125 typedef struct _GstMetaItem GstMetaItem;
132 #define ITEM_SIZE(info) ((info)->size + sizeof (GstMetaItem))
134 #define GST_BUFFER_MEM_MAX 16
136 #define GST_BUFFER_SLICE_SIZE(b) (((GstBufferImpl *)(b))->slice_size)
137 #define GST_BUFFER_MEM_LEN(b) (((GstBufferImpl *)(b))->len)
138 #define GST_BUFFER_MEM_ARRAY(b) (((GstBufferImpl *)(b))->mem)
139 #define GST_BUFFER_MEM_PTR(b,i) (((GstBufferImpl *)(b))->mem[i])
140 #define GST_BUFFER_BUFMEM(b) (((GstBufferImpl *)(b))->bufmem)
141 #define GST_BUFFER_META(b) (((GstBufferImpl *)(b))->item)
149 /* the memory blocks */
151 GstMemory *mem[GST_BUFFER_MEM_MAX];
153 /* memory of the buffer when allocated from 1 chunk */
156 /* FIXME, make metadata allocation more efficient by using part of the
163 _is_span (GstMemory ** mem, gsize len, gsize * poffset, GstMemory ** parent)
165 GstMemory *mcur, *mprv;
166 gboolean have_offset = FALSE;
171 for (i = 0; i < len; i++) {
179 /* check if memory is contiguous */
180 if (!gst_memory_is_span (mprv, mcur, &poffs))
187 *parent = mprv->parent;
197 _get_merged_memory (GstBuffer * buffer, guint idx, guint length)
199 GstMemory **mem, *result = NULL;
201 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %u", buffer, idx,
204 mem = GST_BUFFER_MEM_ARRAY (buffer);
206 if (G_UNLIKELY (length == 0)) {
208 } else if (G_LIKELY (length == 1)) {
209 result = gst_memory_ref (mem[idx]);
211 GstMemory *parent = NULL;
212 gsize size, poffset = 0;
214 size = gst_buffer_get_sizes_range (buffer, idx, length, NULL, NULL);
216 if (G_UNLIKELY (_is_span (mem + idx, length, &poffset, &parent))) {
217 if (!GST_MEMORY_IS_NO_SHARE (parent))
218 result = gst_memory_share (parent, poffset, size);
220 GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy for merge %p", parent);
221 result = gst_memory_copy (parent, poffset, size);
224 gsize i, tocopy, left;
225 GstMapInfo sinfo, dinfo;
228 result = gst_allocator_alloc (NULL, size, NULL);
229 gst_memory_map (result, &dinfo, GST_MAP_WRITE);
234 for (i = idx; i < (idx + length) && left > 0; i++) {
235 gst_memory_map (mem[i], &sinfo, GST_MAP_READ);
236 tocopy = MIN (sinfo.size, left);
237 GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
238 "memcpy %" G_GSIZE_FORMAT " bytes for merge %p from memory %p",
239 tocopy, result, mem[i]);
240 memcpy (ptr, (guint8 *) sinfo.data, tocopy);
243 gst_memory_unmap (mem[i], &sinfo);
245 gst_memory_unmap (result, &dinfo);
252 _replace_memory (GstBuffer * buffer, guint len, guint idx, guint length,
259 GST_CAT_LOG (GST_CAT_BUFFER,
260 "buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer, idx,
263 /* unref old memory */
264 for (i = idx; i < end; i++) {
265 GstMemory *old = GST_BUFFER_MEM_PTR (buffer, i);
267 gst_memory_unlock (old, GST_LOCK_FLAG_EXCLUSIVE);
268 gst_memory_unref (old);
272 /* replace with single memory */
273 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
274 GST_BUFFER_MEM_PTR (buffer, idx) = mem;
280 memmove (&GST_BUFFER_MEM_PTR (buffer, idx),
281 &GST_BUFFER_MEM_PTR (buffer, end), (len - end) * sizeof (gpointer));
283 GST_BUFFER_MEM_LEN (buffer) = len - length;
284 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
288 _memory_add (GstBuffer * buffer, gint idx, GstMemory * mem, gboolean lock)
290 guint i, len = GST_BUFFER_MEM_LEN (buffer);
292 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %d, mem %p, lock %d", buffer,
295 if (G_UNLIKELY (len >= GST_BUFFER_MEM_MAX)) {
296 /* too many buffer, span them. */
297 /* FIXME, there is room for improvement here: We could only try to merge
298 * 2 buffers to make some room. If we can't efficiently merge 2 buffers we
299 * could try to only merge the two smallest buffers to avoid memcpy, etc. */
300 GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "memory array overflow in buffer %p",
302 _replace_memory (buffer, len, 0, len, _get_merged_memory (buffer, 0, len));
303 /* we now have 1 single spanned buffer */
310 for (i = len; i > idx; i--) {
311 /* move buffers to insert, FIXME, we need to insert first and then merge */
312 GST_BUFFER_MEM_PTR (buffer, i) = GST_BUFFER_MEM_PTR (buffer, i - 1);
314 /* and insert the new buffer */
316 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
317 GST_BUFFER_MEM_PTR (buffer, idx) = mem;
318 GST_BUFFER_MEM_LEN (buffer) = len + 1;
320 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
323 GST_DEFINE_MINI_OBJECT_TYPE (GstBuffer, gst_buffer);
326 _priv_gst_buffer_initialize (void)
328 _gst_buffer_type = gst_buffer_get_type ();
332 * gst_buffer_get_max_memory:
334 * Get the maximum amount of memory blocks that a buffer can hold. This is a
335 * compile time constant that can be queried with the function.
337 * When more memory blocks are added, existing memory blocks will be merged
338 * together to make room for the new block.
340 * Returns: the maximum amount of memory blocks that a buffer can hold.
345 gst_buffer_get_max_memory (void)
347 return GST_BUFFER_MEM_MAX;
351 * gst_buffer_copy_into:
352 * @dest: a destination #GstBuffer
353 * @src: a source #GstBuffer
354 * @flags: flags indicating what metadata fields should be copied.
355 * @offset: offset to copy from
356 * @size: total size to copy. If -1, all data is copied.
358 * Copies the information from @src into @dest.
360 * If @dest already contains memory and @flags contains GST_BUFFER_COPY_MEMORY,
361 * the memory from @src will be appended to @dest.
363 * @flags indicate which fields will be copied.
365 * Returns: %TRUE if the copying succeeded, %FALSE otherwise.
368 gst_buffer_copy_into (GstBuffer * dest, GstBuffer * src,
369 GstBufferCopyFlags flags, gsize offset, gsize size)
373 gboolean region = FALSE;
375 g_return_val_if_fail (dest != NULL, FALSE);
376 g_return_val_if_fail (src != NULL, FALSE);
378 /* nothing to copy if the buffers are the same */
379 if (G_UNLIKELY (dest == src))
382 g_return_val_if_fail (gst_buffer_is_writable (dest), FALSE);
384 bufsize = gst_buffer_get_size (src);
385 g_return_val_if_fail (bufsize >= offset, FALSE);
389 size = bufsize - offset;
392 g_return_val_if_fail (bufsize >= offset + size, FALSE);
394 GST_CAT_LOG (GST_CAT_BUFFER, "copy %p to %p, offset %" G_GSIZE_FORMAT
395 "-%" G_GSIZE_FORMAT "/%" G_GSIZE_FORMAT, src, dest, offset, size,
398 if (flags & GST_BUFFER_COPY_FLAGS) {
400 guint flags_mask = ~GST_BUFFER_FLAG_TAG_MEMORY;
402 GST_MINI_OBJECT_FLAGS (dest) =
403 (GST_MINI_OBJECT_FLAGS (src) & flags_mask) |
404 (GST_MINI_OBJECT_FLAGS (dest) & ~flags_mask);
407 if (flags & GST_BUFFER_COPY_TIMESTAMPS) {
409 GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
410 GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
411 GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
412 if (size == bufsize) {
413 GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
414 GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
417 GST_BUFFER_PTS (dest) = GST_CLOCK_TIME_NONE;
418 GST_BUFFER_DTS (dest) = GST_CLOCK_TIME_NONE;
419 GST_BUFFER_DURATION (dest) = GST_CLOCK_TIME_NONE;
420 GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET_NONE;
421 GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_NONE;
425 if (flags & GST_BUFFER_COPY_MEMORY) {
426 gsize skip, left, len, dest_len, i, bsize;
429 deep = flags & GST_BUFFER_COPY_DEEP;
431 len = GST_BUFFER_MEM_LEN (src);
432 dest_len = GST_BUFFER_MEM_LEN (dest);
436 /* copy and make regions of the memory */
437 for (i = 0; i < len && left > 0; i++) {
438 GstMemory *mem = GST_BUFFER_MEM_PTR (src, i);
440 bsize = gst_memory_get_sizes (mem, NULL, NULL);
443 /* don't copy buffer */
446 GstMemory *newmem = NULL;
449 tocopy = MIN (bsize - skip, left);
451 if (tocopy < bsize && !deep && !GST_MEMORY_IS_NO_SHARE (mem)) {
452 /* we need to clip something */
453 newmem = gst_memory_share (mem, skip, tocopy);
458 if (deep || GST_MEMORY_IS_NO_SHARE (mem) || (!newmem && tocopy < bsize)) {
459 /* deep copy or we're not allowed to share this memory
460 * between buffers, always copy then */
461 newmem = gst_memory_copy (mem, skip, tocopy);
463 } else if (!newmem) {
464 newmem = gst_memory_ref (mem);
468 gst_buffer_remove_memory_range (dest, dest_len, -1);
472 _memory_add (dest, -1, newmem, TRUE);
476 if (flags & GST_BUFFER_COPY_MERGE) {
479 len = GST_BUFFER_MEM_LEN (dest);
480 mem = _get_merged_memory (dest, 0, len);
482 gst_buffer_remove_memory_range (dest, dest_len, -1);
485 _replace_memory (dest, len, 0, len, mem);
489 if (flags & GST_BUFFER_COPY_META) {
490 for (walk = GST_BUFFER_META (src); walk; walk = walk->next) {
491 GstMeta *meta = &walk->meta;
492 const GstMetaInfo *info = meta->info;
494 if (info->transform_func) {
495 GstMetaTransformCopy copy_data;
497 copy_data.region = region;
498 copy_data.offset = offset;
499 copy_data.size = size;
501 info->transform_func (dest, meta, src,
502 _gst_meta_transform_copy, ©_data);
511 _gst_buffer_copy (GstBuffer * buffer)
515 g_return_val_if_fail (buffer != NULL, NULL);
517 /* create a fresh new buffer */
518 copy = gst_buffer_new ();
520 /* we simply copy everything from our parent */
521 if (!gst_buffer_copy_into (copy, buffer, GST_BUFFER_COPY_ALL, 0, -1))
522 gst_buffer_replace (©, NULL);
525 GST_BUFFER_FLAG_UNSET (copy, GST_BUFFER_FLAG_TAG_MEMORY);
530 /* the default dispose function revives the buffer and returns it to the
531 * pool when there is a pool */
533 _gst_buffer_dispose (GstBuffer * buffer)
537 /* no pool, do free */
538 if ((pool = buffer->pool) == NULL)
541 /* keep the buffer alive */
542 gst_buffer_ref (buffer);
543 /* return the buffer to the pool */
544 GST_CAT_LOG (GST_CAT_BUFFER, "release %p to pool %p", buffer, pool);
545 gst_buffer_pool_release_buffer (pool, buffer);
551 _gst_buffer_free (GstBuffer * buffer)
553 GstMetaItem *walk, *next;
557 g_return_if_fail (buffer != NULL);
559 GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
562 for (walk = GST_BUFFER_META (buffer); walk; walk = next) {
563 GstMeta *meta = &walk->meta;
564 const GstMetaInfo *info = meta->info;
566 /* call free_func if any */
568 info->free_func (meta, buffer);
571 /* and free the slice */
572 g_slice_free1 (ITEM_SIZE (info), walk);
575 /* get the size, when unreffing the memory, we could also unref the buffer
577 msize = GST_BUFFER_SLICE_SIZE (buffer);
579 /* free our memory */
580 len = GST_BUFFER_MEM_LEN (buffer);
581 for (i = 0; i < len; i++) {
582 gst_memory_unlock (GST_BUFFER_MEM_PTR (buffer, i), GST_LOCK_FLAG_EXCLUSIVE);
583 gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
586 /* we set msize to 0 when the buffer is part of the memory block */
589 memset (buffer, 0xff, msize);
591 g_slice_free1 (msize, buffer);
593 gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
598 gst_buffer_init (GstBufferImpl * buffer, gsize size)
600 gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), 0, _gst_buffer_type,
601 (GstMiniObjectCopyFunction) _gst_buffer_copy,
602 (GstMiniObjectDisposeFunction) _gst_buffer_dispose,
603 (GstMiniObjectFreeFunction) _gst_buffer_free);
605 GST_BUFFER_SLICE_SIZE (buffer) = size;
607 GST_BUFFER (buffer)->pool = NULL;
608 GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
609 GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
610 GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
611 GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
612 GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
614 GST_BUFFER_MEM_LEN (buffer) = 0;
615 GST_BUFFER_META (buffer) = NULL;
621 * Creates a newly allocated buffer without any data.
625 * Returns: (transfer full): the new #GstBuffer.
628 gst_buffer_new (void)
630 GstBufferImpl *newbuf;
632 newbuf = g_slice_new (GstBufferImpl);
633 GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
635 gst_buffer_init (newbuf, sizeof (GstBufferImpl));
637 return GST_BUFFER_CAST (newbuf);
641 * gst_buffer_new_allocate:
642 * @allocator: (transfer none) (allow-none): the #GstAllocator to use, or %NULL to use the
644 * @size: the size in bytes of the new buffer's data.
645 * @params: (transfer none) (allow-none): optional parameters
647 * Tries to create a newly allocated buffer with data of the given size and
648 * extra parameters from @allocator. If the requested amount of memory can't be
649 * allocated, %NULL will be returned. The allocated buffer memory is not cleared.
651 * When @allocator is %NULL, the default memory allocator will be used.
653 * Note that when @size == 0, the buffer will not have memory associated with it.
657 * Returns: (transfer full) (nullable): a new #GstBuffer, or %NULL if
658 * the memory couldn't be allocated.
661 gst_buffer_new_allocate (GstAllocator * allocator, gsize size,
662 GstAllocationParams * params)
673 mem = gst_allocator_alloc (allocator, size, params);
674 if (G_UNLIKELY (mem == NULL))
680 newbuf = gst_buffer_new ();
683 _memory_add (newbuf, -1, mem, TRUE);
685 GST_CAT_LOG (GST_CAT_BUFFER,
686 "new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
691 asize = sizeof (GstBufferImpl) + size;
692 data = g_slice_alloc (asize);
693 if (G_UNLIKELY (data == NULL))
696 newbuf = GST_BUFFER_CAST (data);
698 gst_buffer_init ((GstBufferImpl *) data, asize);
700 mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
702 _memory_add (newbuf, -1, mem, TRUE);
707 /* allocate memory and buffer, it might be interesting to do this but there
708 * are many complications. We need to keep the memory mapped to access the
709 * buffer fields and the memory for the buffer might be just very slow. We
710 * also need to do some more magic to get the alignment right. */
711 asize = sizeof (GstBufferImpl) + size;
712 mem = gst_allocator_alloc (allocator, asize, align);
713 if (G_UNLIKELY (mem == NULL))
716 /* map the data part and init the buffer in it, set the buffer size to 0 so
717 * that a finalize won't free the buffer */
718 data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
719 gst_buffer_init ((GstBufferImpl *) data, 0);
720 gst_memory_unmap (mem);
722 /* strip off the buffer */
723 gst_memory_resize (mem, sizeof (GstBufferImpl), size);
725 newbuf = GST_BUFFER_CAST (data);
726 GST_BUFFER_BUFMEM (newbuf) = mem;
729 _memory_add (newbuf, -1, gst_memory_ref (mem), TRUE);
731 GST_BUFFER_FLAG_UNSET (newbuf, GST_BUFFER_FLAG_TAG_MEMORY);
738 GST_CAT_WARNING (GST_CAT_BUFFER,
739 "failed to allocate %" G_GSIZE_FORMAT " bytes", size);
745 * gst_buffer_new_wrapped_full:
746 * @flags: #GstMemoryFlags
747 * @data: (array length=size) (element-type guint8) (transfer none): data to wrap
748 * @maxsize: allocated size of @data
749 * @offset: offset in @data
750 * @size: size of valid data
751 * @user_data: (allow-none): user_data
752 * @notify: (allow-none) (scope async) (closure user_data): called with @user_data when the memory is freed
754 * Allocate a new buffer that wraps the given memory. @data must point to
755 * @maxsize of memory, the wrapped buffer will have the region from @offset and
758 * When the buffer is destroyed, @notify will be called with @user_data.
760 * The prefix/padding must be filled with 0 if @flags contains
761 * #GST_MEMORY_FLAG_ZERO_PREFIXED and #GST_MEMORY_FLAG_ZERO_PADDED respectively.
763 * Returns: (transfer full): a new #GstBuffer
766 gst_buffer_new_wrapped_full (GstMemoryFlags flags, gpointer data,
767 gsize maxsize, gsize offset, gsize size, gpointer user_data,
768 GDestroyNotify notify)
773 newbuf = gst_buffer_new ();
775 gst_memory_new_wrapped (flags, data, maxsize, offset, size, user_data,
777 _memory_add (newbuf, -1, mem, TRUE);
778 GST_BUFFER_FLAG_UNSET (newbuf, GST_BUFFER_FLAG_TAG_MEMORY);
784 * gst_buffer_new_wrapped:
785 * @data: (array length=size) (element-type guint8) (transfer full): data to wrap
786 * @size: allocated size of @data
788 * Creates a new buffer that wraps the given @data. The memory will be freed
789 * with g_free and will be marked writable.
793 * Returns: (transfer full): a new #GstBuffer
796 gst_buffer_new_wrapped (gpointer data, gsize size)
798 return gst_buffer_new_wrapped_full (0, data, size, 0, size, data, g_free);
802 * gst_buffer_n_memory:
803 * @buffer: a #GstBuffer.
805 * Get the amount of memory blocks that this buffer has. This amount is never
806 * larger than what gst_buffer_get_max_memory() returns.
808 * Returns: (transfer full): the amount of memory block in this buffer.
811 gst_buffer_n_memory (GstBuffer * buffer)
813 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
815 return GST_BUFFER_MEM_LEN (buffer);
819 * gst_buffer_prepend_memory:
820 * @buffer: a #GstBuffer.
821 * @mem: (transfer full): a #GstMemory.
823 * Prepend the memory block @mem to @buffer. This function takes
824 * ownership of @mem and thus doesn't increase its refcount.
826 * This function is identical to gst_buffer_insert_memory() with an index of 0.
827 * See gst_buffer_insert_memory() for more details.
830 gst_buffer_prepend_memory (GstBuffer * buffer, GstMemory * mem)
832 gst_buffer_insert_memory (buffer, 0, mem);
836 * gst_buffer_append_memory:
837 * @buffer: a #GstBuffer.
838 * @mem: (transfer full): a #GstMemory.
840 * Append the memory block @mem to @buffer. This function takes
841 * ownership of @mem and thus doesn't increase its refcount.
843 * This function is identical to gst_buffer_insert_memory() with an index of -1.
844 * See gst_buffer_insert_memory() for more details.
847 gst_buffer_append_memory (GstBuffer * buffer, GstMemory * mem)
849 gst_buffer_insert_memory (buffer, -1, mem);
853 * gst_buffer_insert_memory:
854 * @buffer: a #GstBuffer.
855 * @idx: the index to add the memory at, or -1 to append it to the end
856 * @mem: (transfer full): a #GstMemory.
858 * Insert the memory block @mem to @buffer at @idx. This function takes ownership
859 * of @mem and thus doesn't increase its refcount.
861 * Only gst_buffer_get_max_memory() can be added to a buffer. If more memory is
862 * added, existing memory blocks will automatically be merged to make room for
866 gst_buffer_insert_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
868 g_return_if_fail (GST_IS_BUFFER (buffer));
869 g_return_if_fail (gst_buffer_is_writable (buffer));
870 g_return_if_fail (mem != NULL);
871 g_return_if_fail (idx == -1 ||
872 (idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
874 _memory_add (buffer, idx, mem, TRUE);
878 _get_mapped (GstBuffer * buffer, guint idx, GstMapInfo * info,
881 GstMemory *mem, *mapped;
883 mem = gst_memory_ref (GST_BUFFER_MEM_PTR (buffer, idx));
885 mapped = gst_memory_make_mapped (mem, info, flags);
888 /* memory changed, lock new memory */
889 gst_memory_lock (mapped, GST_LOCK_FLAG_EXCLUSIVE);
890 GST_BUFFER_MEM_PTR (buffer, idx) = mapped;
891 /* unlock old memory */
892 gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
893 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
895 gst_memory_unref (mem);
901 * gst_buffer_peek_memory:
902 * @buffer: a #GstBuffer.
905 * Get the memory block at @idx in @buffer. The memory block stays valid until
906 * the memory block in @buffer is removed, replaced or merged, typically with
907 * any call that modifies the memory in @buffer.
909 * Returns: (transfer none): the #GstMemory at @idx.
912 gst_buffer_peek_memory (GstBuffer * buffer, guint idx)
916 g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
917 len = GST_BUFFER_MEM_LEN (buffer);
918 g_return_val_if_fail (idx < len, NULL);
920 return GST_BUFFER_MEM_PTR (buffer, idx);
924 * gst_buffer_get_memory:
925 * @buffer: a #GstBuffer.
928 * Get the memory block at index @idx in @buffer.
930 * Returns: (transfer full): a #GstMemory that contains the data of the
931 * memory block at @idx. Use gst_memory_unref () after usage.
934 gst_buffer_get_memory (GstBuffer * buffer, guint idx)
936 return gst_buffer_get_memory_range (buffer, idx, 1);
940 * gst_buffer_get_all_memory:
941 * @buffer: a #GstBuffer.
943 * Get all the memory block in @buffer. The memory blocks will be merged
944 * into one large #GstMemory.
946 * Returns: (transfer full): a #GstMemory that contains the merged memory.
947 * Use gst_memory_unref () after usage.
950 gst_buffer_get_all_memory (GstBuffer * buffer)
952 return gst_buffer_get_memory_range (buffer, 0, -1);
956 * gst_buffer_get_memory_range:
957 * @buffer: a #GstBuffer.
961 * Get @length memory blocks in @buffer starting at @idx. The memory blocks will
962 * be merged into one large #GstMemory.
964 * If @length is -1, all memory starting from @idx is merged.
966 * Returns: (transfer full): a #GstMemory that contains the merged data of @length
967 * blocks starting at @idx. Use gst_memory_unref () after usage.
970 gst_buffer_get_memory_range (GstBuffer * buffer, guint idx, gint length)
974 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
976 g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
977 len = GST_BUFFER_MEM_LEN (buffer);
978 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
979 (length == -1 && idx < len) || (length > 0 && length + idx <= len), NULL);
984 return _get_merged_memory (buffer, idx, length);
988 * gst_buffer_replace_memory:
989 * @buffer: a #GstBuffer.
991 * @mem: (transfer full): a #GstMemory
993 * Replaces the memory block at index @idx in @buffer with @mem.
996 gst_buffer_replace_memory (GstBuffer * buffer, guint idx, GstMemory * mem)
998 gst_buffer_replace_memory_range (buffer, idx, 1, mem);
1002 * gst_buffer_replace_all_memory:
1003 * @buffer: a #GstBuffer.
1004 * @mem: (transfer full): a #GstMemory
1006 * Replaces all memory in @buffer with @mem.
1009 gst_buffer_replace_all_memory (GstBuffer * buffer, GstMemory * mem)
1011 gst_buffer_replace_memory_range (buffer, 0, -1, mem);
1015 * gst_buffer_replace_memory_range:
1016 * @buffer: a #GstBuffer.
1018 * @length: a length should not be 0
1019 * @mem: (transfer full): a #GstMemory
1021 * Replaces @length memory blocks in @buffer starting at @idx with @mem.
1023 * If @length is -1, all memory starting from @idx will be removed and
1024 * replaced with @mem.
1026 * @buffer should be writable.
1029 gst_buffer_replace_memory_range (GstBuffer * buffer, guint idx, gint length,
1034 g_return_if_fail (GST_IS_BUFFER (buffer));
1035 g_return_if_fail (gst_buffer_is_writable (buffer));
1037 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d, %p", idx, length, mem);
1039 len = GST_BUFFER_MEM_LEN (buffer);
1040 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1041 (length == -1 && idx < len) || (length > 0 && length + idx <= len));
1046 _replace_memory (buffer, len, idx, length, mem);
1050 * gst_buffer_remove_memory:
1051 * @buffer: a #GstBuffer.
1054 * Remove the memory block in @b at index @i.
1057 gst_buffer_remove_memory (GstBuffer * buffer, guint idx)
1059 gst_buffer_remove_memory_range (buffer, idx, 1);
1063 * gst_buffer_remove_all_memory:
1064 * @buffer: a #GstBuffer.
1066 * Remove all the memory blocks in @buffer.
1069 gst_buffer_remove_all_memory (GstBuffer * buffer)
1071 gst_buffer_remove_memory_range (buffer, 0, -1);
1075 * gst_buffer_remove_memory_range:
1076 * @buffer: a #GstBuffer.
1080 * Remove @length memory blocks in @buffer starting from @idx.
1082 * @length can be -1, in which case all memory starting from @idx is removed.
1085 gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, gint length)
1089 g_return_if_fail (GST_IS_BUFFER (buffer));
1090 g_return_if_fail (gst_buffer_is_writable (buffer));
1092 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1094 len = GST_BUFFER_MEM_LEN (buffer);
1095 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1096 (length == -1 && idx < len) || length + idx <= len);
1101 _replace_memory (buffer, len, idx, length, NULL);
1105 * gst_buffer_find_memory:
1106 * @buffer: a #GstBuffer.
1107 * @offset: an offset
1109 * @idx: (out): pointer to index
1110 * @length: (out): pointer to length
1111 * @skip: (out): pointer to skip
1113 * Find the memory blocks that span @size bytes starting from @offset
1116 * When this function returns %TRUE, @idx will contain the index of the first
1117 * memory block where the byte for @offset can be found and @length contains the
1118 * number of memory blocks containing the @size remaining bytes. @skip contains
1119 * the number of bytes to skip in the memory block at @idx to get to the byte
1122 * @size can be -1 to get all the memory blocks after @idx.
1124 * Returns: %TRUE when @size bytes starting from @offset could be found in
1125 * @buffer and @idx, @length and @skip will be filled.
1128 gst_buffer_find_memory (GstBuffer * buffer, gsize offset, gsize size,
1129 guint * idx, guint * length, gsize * skip)
1131 guint i, len, found;
1133 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1134 g_return_val_if_fail (idx != NULL, FALSE);
1135 g_return_val_if_fail (length != NULL, FALSE);
1136 g_return_val_if_fail (skip != NULL, FALSE);
1138 len = GST_BUFFER_MEM_LEN (buffer);
1141 for (i = 0; i < len; i++) {
1145 mem = GST_BUFFER_MEM_PTR (buffer, i);
1146 s = gst_memory_get_sizes (mem, NULL, NULL);
1149 /* block before offset, or empty block, skip */
1152 /* block after offset */
1154 /* first block, remember index and offset */
1158 /* return remaining blocks */
1165 /* count the amount of found bytes */
1167 if (found >= size) {
1168 /* we have enough bytes */
1169 *length = i - *idx + 1;
1178 * gst_buffer_is_memory_range_writable:
1179 * @buffer: a #GstBuffer.
1181 * @length: a length should not be 0
1183 * Check if @length memory blocks in @buffer starting from @idx are writable.
1185 * @length can be -1 to check all the memory blocks after @idx.
1187 * Note that this function does not check if @buffer is writable, use
1188 * gst_buffer_is_writable() to check that if needed.
1190 * Returns: %TRUE if the memory range is writable
1195 gst_buffer_is_memory_range_writable (GstBuffer * buffer, guint idx, gint length)
1199 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1201 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1203 len = GST_BUFFER_MEM_LEN (buffer);
1204 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1205 (length == -1 && idx < len) || (length > 0 && length + idx <= len),
1213 for (i = 0; i < len; i++) {
1214 if (!gst_memory_is_writable (GST_BUFFER_MEM_PTR (buffer, i + idx)))
1221 * gst_buffer_is_all_memory_writable:
1222 * @buffer: a #GstBuffer.
1224 * Check if all memory blocks in @buffer are writable.
1226 * Note that this function does not check if @buffer is writable, use
1227 * gst_buffer_is_writable() to check that if needed.
1229 * Returns: %TRUE if all memory blocks in @buffer are writable
1234 gst_buffer_is_all_memory_writable (GstBuffer * buffer)
1236 return gst_buffer_is_memory_range_writable (buffer, 0, -1);
1240 * gst_buffer_get_sizes:
1241 * @buffer: a #GstBuffer.
1242 * @offset: (out) (allow-none): a pointer to the offset
1243 * @maxsize: (out) (allow-none): a pointer to the maxsize
1245 * Get the total size of the memory blocks in @b.
1247 * When not %NULL, @offset will contain the offset of the data in the
1248 * first memory block in @buffer and @maxsize will contain the sum of
1249 * the size and @offset and the amount of extra padding on the last
1250 * memory block. @offset and @maxsize can be used to resize the
1251 * buffer memory blocks with gst_buffer_resize().
1253 * Returns: total size of the memory blocks in @buffer.
1256 gst_buffer_get_sizes (GstBuffer * buffer, gsize * offset, gsize * maxsize)
1258 return gst_buffer_get_sizes_range (buffer, 0, -1, offset, maxsize);
1262 * gst_buffer_get_size:
1263 * @buffer: a #GstBuffer.
1265 * Get the total size of the memory blocks in @buffer.
1267 * Returns: total size of the memory blocks in @buffer.
1270 gst_buffer_get_size (GstBuffer * buffer)
1272 return gst_buffer_get_sizes_range (buffer, 0, -1, NULL, NULL);
1276 * gst_buffer_get_sizes_range:
1277 * @buffer: a #GstBuffer.
1280 * @offset: (out) (allow-none): a pointer to the offset
1281 * @maxsize: (out) (allow-none): a pointer to the maxsize
1283 * Get the total size of @length memory blocks stating from @idx in @buffer.
1285 * When not %NULL, @offset will contain the offset of the data in the
1286 * memory block in @buffer at @idx and @maxsize will contain the sum of the size
1287 * and @offset and the amount of extra padding on the memory block at @idx +
1289 * @offset and @maxsize can be used to resize the buffer memory blocks with
1290 * gst_buffer_resize_range().
1292 * Returns: total size of @length memory blocks starting at @idx in @buffer.
1295 gst_buffer_get_sizes_range (GstBuffer * buffer, guint idx, gint length,
1296 gsize * offset, gsize * maxsize)
1302 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1303 len = GST_BUFFER_MEM_LEN (buffer);
1304 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1305 (length == -1 && idx < len) || (length + idx <= len), 0);
1310 if (G_LIKELY (length == 1)) {
1312 mem = GST_BUFFER_MEM_PTR (buffer, idx);
1313 size = gst_memory_get_sizes (mem, offset, maxsize);
1319 size = offs = extra = 0;
1320 for (i = idx; i < end; i++) {
1323 mem = GST_BUFFER_MEM_PTR (buffer, i);
1324 s = gst_memory_get_sizes (mem, &o, &ms);
1328 /* first size, take accumulated data before as the offset */
1332 /* save the amount of data after this block */
1333 extra = ms - (o + s);
1335 /* empty block, add as extra */
1342 *maxsize = offs + size + extra;
1348 * gst_buffer_resize:
1349 * @buffer: a #GstBuffer.
1350 * @offset: the offset adjustment
1351 * @size: the new size or -1 to just adjust the offset
1353 * Set the offset and total size of the memory blocks in @buffer.
1356 gst_buffer_resize (GstBuffer * buffer, gssize offset, gssize size)
1358 gst_buffer_resize_range (buffer, 0, -1, offset, size);
1362 * gst_buffer_set_size:
1363 * @buffer: a #GstBuffer.
1364 * @size: the new size
1366 * Set the total size of the memory blocks in @buffer.
1369 gst_buffer_set_size (GstBuffer * buffer, gssize size)
1371 gst_buffer_resize_range (buffer, 0, -1, 0, size);
1375 * gst_buffer_resize_range:
1376 * @buffer: a #GstBuffer.
1379 * @offset: the offset adjustment
1380 * @size: the new size or -1 to just adjust the offset
1382 * Set the total size of the @length memory blocks starting at @idx in
1385 * Returns: %TRUE if resizing succeeded, %FALSE otherwise.
1388 gst_buffer_resize_range (GstBuffer * buffer, guint idx, gint length,
1389 gssize offset, gssize size)
1392 gsize bsize, bufsize, bufoffs, bufmax;
1394 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
1395 g_return_val_if_fail (size >= -1, FALSE);
1397 len = GST_BUFFER_MEM_LEN (buffer);
1398 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1399 (length == -1 && idx < len) || (length + idx <= len), FALSE);
1404 bufsize = gst_buffer_get_sizes_range (buffer, idx, length, &bufoffs, &bufmax);
1406 GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
1407 " size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
1408 G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
1410 /* we can't go back further than the current offset or past the end of the
1412 g_return_val_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
1413 && bufoffs + offset <= bufmax), FALSE);
1415 g_return_val_if_fail (bufsize >= offset, FALSE);
1416 size = bufsize - offset;
1418 g_return_val_if_fail (bufmax >= bufoffs + offset + size, FALSE);
1421 if (offset == 0 && size == bufsize)
1426 for (i = idx; i < end; i++) {
1430 mem = GST_BUFFER_MEM_PTR (buffer, i);
1431 bsize = gst_memory_get_sizes (mem, NULL, NULL);
1434 /* last buffer always gets resized to the remaining size */
1437 /* shrink buffers before the offset */
1438 else if ((gssize) bsize <= offset) {
1440 noffs = offset - bsize;
1443 /* clip other buffers */
1445 left = MIN (bsize - offset, size);
1447 if (offset != 0 || left != bsize) {
1448 if (gst_memory_is_writable (mem)) {
1449 gst_memory_resize (mem, offset, left);
1451 GstMemory *newmem = NULL;
1453 if (!GST_MEMORY_IS_NO_SHARE (mem))
1454 newmem = gst_memory_share (mem, offset, left);
1457 newmem = gst_memory_copy (mem, offset, left);
1462 gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
1463 GST_BUFFER_MEM_PTR (buffer, i) = newmem;
1464 gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
1465 gst_memory_unref (mem);
1467 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1480 * @buffer: a #GstBuffer.
1481 * @info: (out): info about the mapping
1482 * @flags: flags for the mapping
1484 * This function fills @info with the #GstMapInfo of all merged memory
1485 * blocks in @buffer.
1487 * @flags describe the desired access of the memory. When @flags is
1488 * #GST_MAP_WRITE, @buffer should be writable (as returned from
1489 * gst_buffer_is_writable()).
1491 * When @buffer is writable but the memory isn't, a writable copy will
1492 * automatically be created and returned. The readonly copy of the
1493 * buffer memory will then also be replaced with this writable copy.
1495 * The memory in @info should be unmapped with gst_buffer_unmap() after
1498 * Returns: %TRUE if the map succeeded and @info contains valid data.
1501 gst_buffer_map (GstBuffer * buffer, GstMapInfo * info, GstMapFlags flags)
1503 return gst_buffer_map_range (buffer, 0, -1, info, flags);
1507 * gst_buffer_map_range:
1508 * @buffer: a #GstBuffer.
1511 * @info: (out): info about the mapping
1512 * @flags: flags for the mapping
1514 * This function fills @info with the #GstMapInfo of @length merged memory blocks
1515 * starting at @idx in @buffer. When @length is -1, all memory blocks starting
1516 * from @idx are merged and mapped.
1518 * @flags describe the desired access of the memory. When @flags is
1519 * #GST_MAP_WRITE, @buffer should be writable (as returned from
1520 * gst_buffer_is_writable()).
1522 * When @buffer is writable but the memory isn't, a writable copy will
1523 * automatically be created and returned. The readonly copy of the buffer memory
1524 * will then also be replaced with this writable copy.
1526 * The memory in @info should be unmapped with gst_buffer_unmap() after usage.
1528 * Returns: %TRUE if the map succeeded and @info contains valid
1532 gst_buffer_map_range (GstBuffer * buffer, guint idx, gint length,
1533 GstMapInfo * info, GstMapFlags flags)
1535 GstMemory *mem, *nmem;
1536 gboolean write, writable;
1539 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1540 g_return_val_if_fail (info != NULL, FALSE);
1541 len = GST_BUFFER_MEM_LEN (buffer);
1542 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1543 (length == -1 && idx < len) || (length > 0
1544 && length + idx <= len), FALSE);
1546 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %d, flags %04x",
1547 buffer, idx, length, flags);
1549 write = (flags & GST_MAP_WRITE) != 0;
1550 writable = gst_buffer_is_writable (buffer);
1552 /* check if we can write when asked for write access */
1553 if (G_UNLIKELY (write && !writable))
1559 mem = _get_merged_memory (buffer, idx, length);
1560 if (G_UNLIKELY (mem == NULL))
1563 /* now try to map */
1564 nmem = gst_memory_make_mapped (mem, info, flags);
1565 if (G_UNLIKELY (nmem == NULL))
1568 /* if we merged or when the map returned a different memory, we try to replace
1569 * the memory in the buffer */
1570 if (G_UNLIKELY (length > 1 || nmem != mem)) {
1571 /* if the buffer is writable, replace the memory */
1573 _replace_memory (buffer, len, idx, length, gst_memory_ref (nmem));
1576 GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
1577 "temporary mapping for memory %p in buffer %p", nmem, buffer);
1586 GST_WARNING_OBJECT (buffer, "write map requested on non-writable buffer");
1587 g_critical ("write map requested on non-writable buffer");
1588 memset (info, 0, sizeof (GstMapInfo));
1593 /* empty buffer, we need to return NULL */
1594 GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
1595 memset (info, 0, sizeof (GstMapInfo));
1600 GST_DEBUG_OBJECT (buffer, "cannot map memory");
1601 memset (info, 0, sizeof (GstMapInfo));
1608 * @buffer: a #GstBuffer.
1609 * @info: a #GstMapInfo
1611 * Release the memory previously mapped with gst_buffer_map().
1614 gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
1616 g_return_if_fail (GST_IS_BUFFER (buffer));
1617 g_return_if_fail (info != NULL);
1619 /* we need to check for NULL, it is possible that we tried to map a buffer
1620 * without memory and we should be able to unmap that fine */
1621 if (G_LIKELY (info->memory)) {
1622 gst_memory_unmap (info->memory, info);
1623 gst_memory_unref (info->memory);
1629 * @buffer: a #GstBuffer.
1630 * @offset: the offset to fill
1631 * @src: (array length=size) (element-type guint8): the source address
1632 * @size: the size to fill
1634 * Copy @size bytes from @src to @buffer at @offset.
1636 * Returns: The amount of bytes copied. This value can be lower than @size
1637 * when @buffer did not contain enough data.
1640 gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
1644 const guint8 *ptr = src;
1646 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1647 g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1648 g_return_val_if_fail (src != NULL || size == 0, 0);
1650 GST_CAT_LOG (GST_CAT_BUFFER,
1651 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1654 len = GST_BUFFER_MEM_LEN (buffer);
1657 for (i = 0; i < len && left > 0; i++) {
1662 mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1663 if (info.size > offset) {
1664 /* we have enough */
1665 tocopy = MIN (info.size - offset, left);
1666 memcpy ((guint8 *) info.data + offset, ptr, tocopy);
1671 /* offset past buffer, skip */
1672 offset -= info.size;
1674 gst_memory_unmap (mem, &info);
1680 * gst_buffer_extract:
1681 * @buffer: a #GstBuffer.
1682 * @offset: the offset to extract
1683 * @dest: the destination address
1684 * @size: the size to extract
1686 * Copy @size bytes starting from @offset in @buffer to @dest.
1688 * Returns: The amount of bytes extracted. This value can be lower than @size
1689 * when @buffer did not contain enough data.
1692 gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
1697 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1698 g_return_val_if_fail (dest != NULL, 0);
1700 GST_CAT_LOG (GST_CAT_BUFFER,
1701 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1704 len = GST_BUFFER_MEM_LEN (buffer);
1707 for (i = 0; i < len && left > 0; i++) {
1712 mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1713 if (info.size > offset) {
1714 /* we have enough */
1715 tocopy = MIN (info.size - offset, left);
1716 memcpy (ptr, (guint8 *) info.data + offset, tocopy);
1721 /* offset past buffer, skip */
1722 offset -= info.size;
1724 gst_memory_unmap (mem, &info);
1730 * gst_buffer_memcmp:
1731 * @buffer: a #GstBuffer.
1732 * @offset: the offset in @buffer
1733 * @mem: (array length=size) (element-type guint8): the memory to compare
1734 * @size: the size to compare
1736 * Compare @size bytes starting from @offset in @buffer with the memory in @mem.
1738 * Returns: 0 if the memory is equal.
1741 gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
1745 const guint8 *ptr = mem;
1748 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1749 g_return_val_if_fail (mem != NULL, 0);
1751 GST_CAT_LOG (GST_CAT_BUFFER,
1752 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1755 if (G_UNLIKELY (gst_buffer_get_size (buffer) < offset + size))
1758 len = GST_BUFFER_MEM_LEN (buffer);
1760 for (i = 0; i < len && size > 0 && res == 0; i++) {
1765 mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1766 if (info.size > offset) {
1767 /* we have enough */
1768 tocmp = MIN (info.size - offset, size);
1769 res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
1774 /* offset past buffer, skip */
1775 offset -= info.size;
1777 gst_memory_unmap (mem, &info);
1783 * gst_buffer_memset:
1784 * @buffer: a #GstBuffer.
1785 * @offset: the offset in @buffer
1786 * @val: the value to set
1787 * @size: the size to set
1789 * Fill @buf with @size bytes with @val starting from @offset.
1791 * Returns: The amount of bytes filled. This value can be lower than @size
1792 * when @buffer did not contain enough data.
1795 gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
1799 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1800 g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1802 GST_CAT_LOG (GST_CAT_BUFFER,
1803 "buffer %p, offset %" G_GSIZE_FORMAT ", val %02x, size %" G_GSIZE_FORMAT,
1804 buffer, offset, val, size);
1806 len = GST_BUFFER_MEM_LEN (buffer);
1809 for (i = 0; i < len && left > 0; i++) {
1814 mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1815 if (info.size > offset) {
1816 /* we have enough */
1817 toset = MIN (info.size - offset, left);
1818 memset ((guint8 *) info.data + offset, val, toset);
1822 /* offset past buffer, skip */
1823 offset -= info.size;
1825 gst_memory_unmap (mem, &info);
1831 * gst_buffer_copy_region:
1832 * @parent: a #GstBuffer.
1833 * @flags: the #GstBufferCopyFlags
1834 * @offset: the offset into parent #GstBuffer at which the new sub-buffer
1836 * @size: the size of the new #GstBuffer sub-buffer, in bytes.
1838 * Creates a sub-buffer from @parent at @offset and @size.
1839 * This sub-buffer uses the actual memory space of the parent buffer.
1840 * This function will copy the offset and timestamp fields when the
1841 * offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and
1842 * #GST_BUFFER_OFFSET_NONE.
1843 * If @offset equals 0 and @size equals the total size of @buffer, the
1844 * duration and offset end fields are also copied. If not they will be set
1845 * to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
1849 * Returns: (transfer full): the new #GstBuffer or %NULL if the arguments were
1853 gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
1854 gsize offset, gsize size)
1858 g_return_val_if_fail (buffer != NULL, NULL);
1860 /* create the new buffer */
1861 copy = gst_buffer_new ();
1863 GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
1864 "-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
1866 if (!gst_buffer_copy_into (copy, buffer, flags, offset, size))
1867 gst_buffer_replace (©, NULL);
1873 * gst_buffer_append:
1874 * @buf1: (transfer full): the first source #GstBuffer to append.
1875 * @buf2: (transfer full): the second source #GstBuffer to append.
1877 * Append all the memory from @buf2 to @buf1. The result buffer will contain a
1878 * concatenation of the memory of @buf1 and @buf2.
1880 * Returns: (transfer full): the new #GstBuffer that contains the memory
1881 * of the two source buffers.
1884 gst_buffer_append (GstBuffer * buf1, GstBuffer * buf2)
1886 return gst_buffer_append_region (buf1, buf2, 0, -1);
1890 * gst_buffer_append_region:
1891 * @buf1: (transfer full): the first source #GstBuffer to append.
1892 * @buf2: (transfer full): the second source #GstBuffer to append.
1893 * @offset: the offset in @buf2
1894 * @size: the size or -1 of @buf2
1896 * Append @size bytes at @offset from @buf2 to @buf1. The result buffer will
1897 * contain a concatenation of the memory of @buf1 and the requested region of
1900 * Returns: (transfer full): the new #GstBuffer that contains the memory
1901 * of the two source buffers.
1904 gst_buffer_append_region (GstBuffer * buf1, GstBuffer * buf2, gssize offset,
1909 g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
1910 g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
1912 buf1 = gst_buffer_make_writable (buf1);
1913 buf2 = gst_buffer_make_writable (buf2);
1915 gst_buffer_resize (buf2, offset, size);
1917 len = GST_BUFFER_MEM_LEN (buf2);
1918 for (i = 0; i < len; i++) {
1921 mem = GST_BUFFER_MEM_PTR (buf2, i);
1922 GST_BUFFER_MEM_PTR (buf2, i) = NULL;
1923 _memory_add (buf1, -1, mem, FALSE);
1926 GST_BUFFER_MEM_LEN (buf2) = 0;
1927 GST_BUFFER_FLAG_SET (buf2, GST_BUFFER_FLAG_TAG_MEMORY);
1928 gst_buffer_unref (buf2);
1934 * gst_buffer_get_meta:
1935 * @buffer: a #GstBuffer
1936 * @api: the #GType of an API
1938 * Get the metadata for @api on buffer. When there is no such metadata, %NULL is
1939 * returned. If multiple metadata with the given @api are attached to this
1940 * buffer only the first one is returned. To handle multiple metadata with a
1941 * given API use gst_buffer_iterate_meta() or gst_buffer_foreach_meta() instead
1942 * and check the meta->info.api member for the API type.
1944 * Returns: (transfer none) (nullable): the metadata for @api on
1948 gst_buffer_get_meta (GstBuffer * buffer, GType api)
1951 GstMeta *result = NULL;
1953 g_return_val_if_fail (buffer != NULL, NULL);
1954 g_return_val_if_fail (api != 0, NULL);
1956 /* find GstMeta of the requested API */
1957 for (item = GST_BUFFER_META (buffer); item; item = item->next) {
1958 GstMeta *meta = &item->meta;
1959 if (meta->info->api == api) {
1968 * gst_buffer_add_meta:
1969 * @buffer: a #GstBuffer
1970 * @info: a #GstMetaInfo
1971 * @params: params for @info
1973 * Add metadata for @info to @buffer using the parameters in @params.
1975 * Returns: (transfer none): the metadata for the api in @info on @buffer.
1978 gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
1982 GstMeta *result = NULL;
1985 g_return_val_if_fail (buffer != NULL, NULL);
1986 g_return_val_if_fail (info != NULL, NULL);
1987 g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
1989 /* create a new slice */
1990 size = ITEM_SIZE (info);
1991 item = g_slice_alloc (size);
1992 result = &item->meta;
1993 result->info = info;
1994 result->flags = GST_META_FLAG_NONE;
1996 GST_CAT_DEBUG (GST_CAT_BUFFER,
1997 "alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
1998 g_type_name (info->type), info->size);
2000 /* call the init_func when needed */
2001 if (info->init_func)
2002 if (!info->init_func (result, params, buffer))
2005 /* and add to the list of metadata */
2006 item->next = GST_BUFFER_META (buffer);
2007 GST_BUFFER_META (buffer) = item;
2013 g_slice_free1 (size, item);
2019 * gst_buffer_remove_meta:
2020 * @buffer: a #GstBuffer
2023 * Remove the metadata for @meta on @buffer.
2025 * Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
2026 * metadata was on @buffer.
2029 gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
2031 GstMetaItem *walk, *prev;
2033 g_return_val_if_fail (buffer != NULL, FALSE);
2034 g_return_val_if_fail (meta != NULL, FALSE);
2035 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
2036 g_return_val_if_fail (!GST_META_FLAG_IS_SET (meta, GST_META_FLAG_LOCKED),
2039 /* find the metadata and delete */
2040 prev = GST_BUFFER_META (buffer);
2041 for (walk = prev; walk; walk = walk->next) {
2042 GstMeta *m = &walk->meta;
2044 const GstMetaInfo *info = meta->info;
2046 /* remove from list */
2047 if (GST_BUFFER_META (buffer) == walk)
2048 GST_BUFFER_META (buffer) = walk->next;
2050 prev->next = walk->next;
2051 /* call free_func if any */
2052 if (info->free_func)
2053 info->free_func (m, buffer);
2055 /* and free the slice */
2056 g_slice_free1 (ITEM_SIZE (info), walk);
2061 return walk != NULL;
2065 * gst_buffer_iterate_meta:
2066 * @buffer: a #GstBuffer
2067 * @state: an opaque state pointer
2069 * Retrieve the next #GstMeta after @current. If @state points
2070 * to %NULL, the first metadata is returned.
2072 * @state will be updated with an opaque state pointer
2074 * Returns: (transfer none) (nullable): The next #GstMeta or %NULL
2075 * when there are no more items.
2078 gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
2082 g_return_val_if_fail (buffer != NULL, NULL);
2083 g_return_val_if_fail (state != NULL, NULL);
2085 meta = (GstMetaItem **) state;
2087 /* state NULL, move to first item */
2088 *meta = GST_BUFFER_META (buffer);
2090 /* state !NULL, move to next item in list */
2091 *meta = (*meta)->next;
2094 return &(*meta)->meta;
2100 * gst_buffer_foreach_meta:
2101 * @buffer: a #GstBuffer
2102 * @func: (scope call): a #GstBufferForeachMetaFunc to call
2103 * @user_data: (closure): user data passed to @func
2105 * Call @func with @user_data for each meta in @buffer.
2107 * @func can modify the passed meta pointer or its contents. The return value
2108 * of @func define if this function returns or if the remaining metadata items
2109 * in the buffer should be skipped.
2111 * Returns: %FALSE when @func returned %FALSE for one of the metadata.
2114 gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
2117 GstMetaItem *walk, *prev, *next;
2118 gboolean res = TRUE;
2120 g_return_val_if_fail (buffer != NULL, FALSE);
2121 g_return_val_if_fail (func != NULL, FALSE);
2123 /* find the metadata and delete */
2124 prev = GST_BUFFER_META (buffer);
2125 for (walk = prev; walk; walk = next) {
2128 m = new = &walk->meta;
2131 res = func (buffer, &new, user_data);
2134 const GstMetaInfo *info = m->info;
2136 GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
2137 g_type_name (info->type));
2139 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
2140 g_return_val_if_fail (!GST_META_FLAG_IS_SET (m, GST_META_FLAG_LOCKED),
2143 /* remove from list */
2144 if (GST_BUFFER_META (buffer) == walk)
2145 GST_BUFFER_META (buffer) = next;
2149 /* call free_func if any */
2150 if (info->free_func)
2151 info->free_func (m, buffer);
2153 /* and free the slice */
2154 g_slice_free1 (ITEM_SIZE (info), walk);
2163 * gst_buffer_extract_dup:
2164 * @buffer: a #GstBuffer
2165 * @offset: the offset to extract
2166 * @size: the size to extract
2167 * @dest: (array length=dest_size) (element-type guint8) (out): A pointer where
2168 * the destination array will be written.
2169 * @dest_size: (out): A location where the size of @dest can be written
2171 * Extracts a copy of at most @size bytes the data at @offset into a #GBytes.
2172 * @dest must be freed using g_free() when done.
2178 gst_buffer_extract_dup (GstBuffer * buffer, gsize offset, gsize size,
2179 gpointer * dest, gsize * dest_size)
2183 real_size = gst_buffer_get_size (buffer);
2185 *dest = g_malloc (MIN (real_size - offset, size));
2187 *dest_size = gst_buffer_extract (buffer, offset, *dest, size);