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., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, 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.
37 * <title>Creating a buffer for a video frame</title>
41 * gint size, width, height, bpp;
43 * size = width * height * bpp;
44 * buffer = gst_buffer_new ();
45 * memory = gst_allocator_alloc (NULL, size, NULL);
46 * gst_buffer_insert_memory (buffer, -1, memory);
51 * Alternatively, use gst_buffer_new_allocate()
52 * to create a buffer with preallocated data of a given size.
54 * Buffers can contain a list of #GstMemory objects. You can retrieve how many
55 * memory objects with gst_buffer_n_memory() and you can get a pointer
56 * to memory with gst_buffer_peek_memory()
58 * A buffer will usually have timestamps, and a duration, but neither of these
59 * are guaranteed (they may be set to #GST_CLOCK_TIME_NONE). Whenever a
60 * meaningful value can be given for these, they should be set. The timestamps
61 * and duration are measured in nanoseconds (they are #GstClockTime values).
63 * The buffer DTS refers to the timestamp when the buffer should be decoded and
64 * is usually monotonically increasing. The buffer PTS refers to the timestamp when
65 * the buffer content should be presented to the user and is not always
66 * monotonically increasing.
68 * A buffer can also have one or both of a start and an end offset. These are
69 * media-type specific. For video buffers, the start offset will generally be
70 * the frame number. For audio buffers, it will be the number of samples
71 * produced so far. For compressed data, it could be the byte offset in a
72 * source or destination file. Likewise, the end offset will be the offset of
73 * the end of the buffer. These can only be meaningfully interpreted if you
74 * know the media type of the buffer (the preceeding CAPS event). Either or both
75 * can be set to #GST_BUFFER_OFFSET_NONE.
77 * gst_buffer_ref() is used to increase the refcount of a buffer. This must be
78 * done when you want to keep a handle to the buffer after pushing it to the
79 * next element. The buffer refcount determines the writability of the buffer, a
80 * buffer is only writable when the refcount is exactly 1, i.e. when the caller
81 * has the only reference to the buffer.
83 * To efficiently create a smaller buffer out of an existing one, you can
84 * use gst_buffer_copy_region(). This method tries to share the memory objects
85 * between the two buffers.
87 * If a plug-in wants to modify the buffer data or metadata in-place, it should
88 * first obtain a buffer that is safe to modify by using
89 * gst_buffer_make_writable(). This function is optimized so that a copy will
90 * only be made when it is necessary.
92 * Several flags of the buffer can be set and unset with the
93 * GST_BUFFER_FLAG_SET() and GST_BUFFER_FLAG_UNSET() macros. Use
94 * GST_BUFFER_FLAG_IS_SET() to test if a certain #GstBufferFlag is set.
96 * Buffers can be efficiently merged into a larger buffer with
97 * gst_buffer_append(). Copying of memory will only be done when absolutely
100 * Arbitrary extra metadata can be set on a buffer with gst_buffer_add_meta().
101 * Metadata can be retrieved with gst_buffer_get_meta(). See also #GstMeta
103 * An element should either unref the buffer or push it out on a src pad
104 * using gst_pad_push() (see #GstPad).
106 * Buffers are usually freed by unreffing them with gst_buffer_unref(). When
107 * the refcount drops to 0, any memory and metadata pointed to by the buffer is
108 * unreffed as well. Buffers allocated from a #GstBufferPool will be returned to
109 * the pool when the refcount drops to 0.
111 * Last reviewed on 2012-03-28 (0.11.3)
113 #include "gst_private.h"
122 #include "gstbuffer.h"
123 #include "gstbufferpool.h"
125 #include "gstutils.h"
126 #include "gstversion.h"
128 GType _gst_buffer_type = 0;
130 typedef struct _GstMetaItem GstMetaItem;
137 #define ITEM_SIZE(info) ((info)->size + sizeof (GstMetaItem))
139 #define GST_BUFFER_MEM_MAX 16
141 #define GST_BUFFER_SLICE_SIZE(b) (((GstBufferImpl *)(b))->slice_size)
142 #define GST_BUFFER_MEM_LEN(b) (((GstBufferImpl *)(b))->len)
143 #define GST_BUFFER_MEM_ARRAY(b) (((GstBufferImpl *)(b))->mem)
144 #define GST_BUFFER_MEM_PTR(b,i) (((GstBufferImpl *)(b))->mem[i])
145 #define GST_BUFFER_BUFMEM(b) (((GstBufferImpl *)(b))->bufmem)
146 #define GST_BUFFER_META(b) (((GstBufferImpl *)(b))->item)
154 /* the memory blocks */
156 GstMemory *mem[GST_BUFFER_MEM_MAX];
158 /* memory of the buffer when allocated from 1 chunk */
161 /* FIXME, make metadata allocation more efficient by using part of the
168 _is_span (GstMemory ** mem, gsize len, gsize * poffset, GstMemory ** parent)
170 GstMemory *mcur, *mprv;
171 gboolean have_offset = FALSE;
176 for (i = 0; i < len; i++) {
184 /* check if memory is contiguous */
185 if (!gst_memory_is_span (mprv, mcur, &poffs))
192 *parent = mprv->parent;
202 _get_merged_memory (GstBuffer * buffer, guint idx, guint length)
204 GstMemory **mem, *result;
206 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %u", buffer, idx,
209 mem = GST_BUFFER_MEM_ARRAY (buffer);
211 if (G_UNLIKELY (length == 0)) {
213 } else if (G_LIKELY (length == 1)) {
214 result = gst_memory_ref (mem[idx]);
216 GstMemory *parent = NULL;
217 gsize size, poffset = 0;
219 size = gst_buffer_get_size (buffer);
221 if (G_UNLIKELY (_is_span (mem + idx, length, &poffset, &parent))) {
222 if (GST_MEMORY_IS_NO_SHARE (parent)) {
223 GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy for merge %p", parent);
224 result = gst_memory_copy (parent, poffset, size);
226 result = gst_memory_share (parent, poffset, size);
229 gsize i, tocopy, left;
230 GstMapInfo sinfo, dinfo;
233 result = gst_allocator_alloc (NULL, size, NULL);
234 gst_memory_map (result, &dinfo, GST_MAP_WRITE);
239 for (i = idx; i < length && left > 0; i++) {
240 gst_memory_map (mem[i], &sinfo, GST_MAP_READ);
241 tocopy = MIN (sinfo.size, left);
242 GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
243 "memcpy %" G_GSIZE_FORMAT " bytes for merge %p from memory %p",
244 tocopy, result, mem[i]);
245 memcpy (ptr, (guint8 *) sinfo.data, tocopy);
248 gst_memory_unmap (mem[i], &sinfo);
250 gst_memory_unmap (result, &dinfo);
257 _replace_memory (GstBuffer * buffer, guint len, guint idx, guint length,
264 GST_CAT_LOG (GST_CAT_BUFFER,
265 "buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer, idx,
268 /* unref old memory */
269 for (i = idx; i < end; i++) {
270 GstMemory *old = GST_BUFFER_MEM_PTR (buffer, i);
272 gst_memory_unlock (old, GST_LOCK_FLAG_EXCLUSIVE);
273 gst_memory_unref (old);
277 /* replace with single memory */
278 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
279 GST_BUFFER_MEM_PTR (buffer, idx) = mem;
285 g_memmove (&GST_BUFFER_MEM_PTR (buffer, idx),
286 &GST_BUFFER_MEM_PTR (buffer, end), (len - end) * sizeof (gpointer));
288 GST_BUFFER_MEM_LEN (buffer) = len - length;
292 _memory_add (GstBuffer * buffer, gint idx, GstMemory * mem, gboolean lock)
294 guint i, len = GST_BUFFER_MEM_LEN (buffer);
296 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %d, mem %p, lock %d", buffer,
299 if (G_UNLIKELY (len >= GST_BUFFER_MEM_MAX)) {
300 /* too many buffer, span them. */
301 /* FIXME, there is room for improvement here: We could only try to merge
302 * 2 buffers to make some room. If we can't efficiently merge 2 buffers we
303 * could try to only merge the two smallest buffers to avoid memcpy, etc. */
304 GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "memory array overflow in buffer %p",
306 _replace_memory (buffer, len, 0, len, _get_merged_memory (buffer, 0, len));
307 /* we now have 1 single spanned buffer */
314 for (i = len; i > idx; i--) {
315 /* move buffers to insert, FIXME, we need to insert first and then merge */
316 GST_BUFFER_MEM_PTR (buffer, i) = GST_BUFFER_MEM_PTR (buffer, i - 1);
318 /* and insert the new buffer */
320 gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
321 GST_BUFFER_MEM_PTR (buffer, idx) = mem;
322 GST_BUFFER_MEM_LEN (buffer) = len + 1;
325 GST_DEFINE_MINI_OBJECT_TYPE (GstBuffer, gst_buffer);
328 _priv_gst_buffer_initialize (void)
330 _gst_buffer_type = gst_buffer_get_type ();
334 * gst_buffer_copy_into:
335 * @dest: a destination #GstBuffer
336 * @src: a source #GstBuffer
337 * @flags: flags indicating what metadata fields should be copied.
338 * @offset: offset to copy from
339 * @size: total size to copy. If -1, all data is copied.
341 * Copies the information from @src into @dest.
343 * If @dest already contains memory and @flags contains GST_BUFFER_COPY_MEMORY,
344 * the memory from @src will be appended to @dest.
346 * @flags indicate which fields will be copied.
349 gst_buffer_copy_into (GstBuffer * dest, GstBuffer * src,
350 GstBufferCopyFlags flags, gsize offset, gsize size)
354 gboolean region = FALSE;
356 g_return_if_fail (dest != NULL);
357 g_return_if_fail (src != NULL);
359 /* nothing to copy if the buffers are the same */
360 if (G_UNLIKELY (dest == src))
363 g_return_if_fail (gst_buffer_is_writable (dest));
365 bufsize = gst_buffer_get_size (src);
366 g_return_if_fail (bufsize >= offset);
370 size = bufsize - offset;
373 g_return_if_fail (bufsize >= offset + size);
375 GST_CAT_LOG (GST_CAT_BUFFER, "copy %p to %p, offset %" G_GSIZE_FORMAT
376 "-%" G_GSIZE_FORMAT "/%" G_GSIZE_FORMAT, src, dest, offset, size,
379 if (flags & GST_BUFFER_COPY_FLAGS) {
381 GST_MINI_OBJECT_FLAGS (dest) = GST_MINI_OBJECT_FLAGS (src);
384 if (flags & GST_BUFFER_COPY_TIMESTAMPS) {
386 GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
387 GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
388 GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
389 if (size == bufsize) {
390 GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
391 GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
394 GST_BUFFER_PTS (dest) = GST_CLOCK_TIME_NONE;
395 GST_BUFFER_DTS (dest) = GST_CLOCK_TIME_NONE;
396 GST_BUFFER_DURATION (dest) = GST_CLOCK_TIME_NONE;
397 GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET_NONE;
398 GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_NONE;
402 if (flags & GST_BUFFER_COPY_MEMORY) {
404 gsize skip, left, len, i, bsize;
406 len = GST_BUFFER_MEM_LEN (src);
410 /* copy and make regions of the memory */
411 for (i = 0; i < len && left > 0; i++) {
412 mem = GST_BUFFER_MEM_PTR (src, i);
413 bsize = gst_memory_get_sizes (mem, NULL, NULL);
416 /* don't copy buffer */
421 tocopy = MIN (bsize - skip, left);
422 if (GST_MEMORY_IS_NO_SHARE (mem)) {
423 /* no share, always copy then */
424 mem = gst_memory_copy (mem, skip, tocopy);
426 } else if (tocopy < bsize) {
427 /* we need to clip something */
428 mem = gst_memory_share (mem, skip, tocopy);
431 mem = gst_memory_ref (mem);
433 _memory_add (dest, -1, mem, TRUE);
437 if (flags & GST_BUFFER_COPY_MERGE) {
438 len = GST_BUFFER_MEM_LEN (dest);
439 _replace_memory (dest, len, 0, len, _get_merged_memory (dest, 0, len));
443 if (flags & GST_BUFFER_COPY_META) {
444 for (walk = GST_BUFFER_META (src); walk; walk = walk->next) {
445 GstMeta *meta = &walk->meta;
446 const GstMetaInfo *info = meta->info;
448 if (info->transform_func) {
449 GstMetaTransformCopy copy_data;
451 copy_data.region = region;
452 copy_data.offset = offset;
453 copy_data.size = size;
455 info->transform_func (dest, meta, src,
456 _gst_meta_transform_copy, ©_data);
463 _gst_buffer_copy (GstBuffer * buffer)
467 g_return_val_if_fail (buffer != NULL, NULL);
469 /* create a fresh new buffer */
470 copy = gst_buffer_new ();
472 /* we simply copy everything from our parent */
473 gst_buffer_copy_into (copy, buffer, GST_BUFFER_COPY_ALL, 0, -1);
478 /* the default dispose function revives the buffer and returns it to the
479 * pool when there is a pool */
481 _gst_buffer_dispose (GstBuffer * buffer)
485 /* no pool, do free */
486 if ((pool = buffer->pool) == NULL)
489 /* keep the buffer alive */
490 gst_buffer_ref (buffer);
491 /* return the buffer to the pool */
492 GST_CAT_LOG (GST_CAT_BUFFER, "release %p to pool %p", buffer, pool);
493 gst_buffer_pool_release_buffer (pool, buffer);
499 _gst_buffer_free (GstBuffer * buffer)
501 GstMetaItem *walk, *next;
505 g_return_if_fail (buffer != NULL);
507 GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
510 for (walk = GST_BUFFER_META (buffer); walk; walk = next) {
511 GstMeta *meta = &walk->meta;
512 const GstMetaInfo *info = meta->info;
514 /* call free_func if any */
516 info->free_func (meta, buffer);
519 /* and free the slice */
520 g_slice_free1 (ITEM_SIZE (info), walk);
523 /* get the size, when unreffing the memory, we could also unref the buffer
525 msize = GST_BUFFER_SLICE_SIZE (buffer);
527 /* free our memory */
528 len = GST_BUFFER_MEM_LEN (buffer);
529 for (i = 0; i < len; i++) {
530 gst_memory_unlock (GST_BUFFER_MEM_PTR (buffer, i), GST_LOCK_FLAG_EXCLUSIVE);
531 gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
534 /* we set msize to 0 when the buffer is part of the memory block */
536 g_slice_free1 (msize, buffer);
538 gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
542 gst_buffer_init (GstBufferImpl * buffer, gsize size)
544 gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), 0, _gst_buffer_type,
545 (GstMiniObjectCopyFunction) _gst_buffer_copy,
546 (GstMiniObjectDisposeFunction) _gst_buffer_dispose,
547 (GstMiniObjectFreeFunction) _gst_buffer_free);
549 GST_BUFFER_SLICE_SIZE (buffer) = size;
551 GST_BUFFER (buffer)->pool = NULL;
552 GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
553 GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
554 GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
555 GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
556 GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
558 GST_BUFFER_MEM_LEN (buffer) = 0;
559 GST_BUFFER_META (buffer) = NULL;
565 * Creates a newly allocated buffer without any data.
569 * Returns: (transfer full): the new #GstBuffer.
572 gst_buffer_new (void)
574 GstBufferImpl *newbuf;
576 newbuf = g_slice_new (GstBufferImpl);
577 GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
579 gst_buffer_init (newbuf, sizeof (GstBufferImpl));
581 return GST_BUFFER_CAST (newbuf);
585 * gst_buffer_new_allocate:
586 * @allocator: (transfer none) (allow-none): the #GstAllocator to use, or NULL to use the
588 * @size: the size in bytes of the new buffer's data.
589 * @params: (transfer none) (allow-none): optional parameters
591 * Tries to create a newly allocated buffer with data of the given size and
592 * extra parameters from @allocator. If the requested amount of memory can't be
593 * allocated, NULL will be returned. The allocated buffer memory is not cleared.
595 * When @allocator is NULL, the default memory allocator will be used.
597 * Note that when @size == 0, the buffer will not have memory associated with it.
601 * Returns: (transfer full): a new #GstBuffer, or NULL if the memory couldn't
605 gst_buffer_new_allocate (GstAllocator * allocator, gsize size,
606 GstAllocationParams * params)
617 mem = gst_allocator_alloc (allocator, size, params);
618 if (G_UNLIKELY (mem == NULL))
624 newbuf = gst_buffer_new ();
627 _memory_add (newbuf, -1, mem, TRUE);
629 GST_CAT_LOG (GST_CAT_BUFFER,
630 "new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
635 asize = sizeof (GstBufferImpl) + size;
636 data = g_slice_alloc (asize);
637 if (G_UNLIKELY (data == NULL))
640 newbuf = GST_BUFFER_CAST (data);
642 gst_buffer_init ((GstBufferImpl *) data, asize);
644 mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
646 _memory_add (newbuf, -1, mem, TRUE);
651 /* allocate memory and buffer, it might be interesting to do this but there
652 * are many complications. We need to keep the memory mapped to access the
653 * buffer fields and the memory for the buffer might be just very slow. We
654 * also need to do some more magic to get the alignment right. */
655 asize = sizeof (GstBufferImpl) + size;
656 mem = gst_allocator_alloc (allocator, asize, align);
657 if (G_UNLIKELY (mem == NULL))
660 /* map the data part and init the buffer in it, set the buffer size to 0 so
661 * that a finalize won't free the buffer */
662 data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
663 gst_buffer_init ((GstBufferImpl *) data, 0);
664 gst_memory_unmap (mem);
666 /* strip off the buffer */
667 gst_memory_resize (mem, sizeof (GstBufferImpl), size);
669 newbuf = GST_BUFFER_CAST (data);
670 GST_BUFFER_BUFMEM (newbuf) = mem;
673 _memory_add (newbuf, -1, gst_memory_ref (mem), TRUE);
681 GST_CAT_WARNING (GST_CAT_BUFFER,
682 "failed to allocate %" G_GSIZE_FORMAT " bytes", size);
688 * gst_buffer_new_wrapped_full:
689 * @flags: #GstMemoryFlags
690 * @data: data to wrap
691 * @maxsize: allocated size of @data
692 * @offset: offset in @data
693 * @size: size of valid data
694 * @user_data: user_data
695 * @notify: called with @user_data when the memory is freed
697 * Allocate a new buffer that wraps the given memory. @data must point to
698 * @maxsize of memory, the wrapped buffer will have the region from @offset and
701 * When the buffer is destroyed, @notify will be called with @user_data.
703 * The prefix/padding must be filled with 0 if @flags contains
704 * #GST_MEMORY_FLAG_ZERO_PREFIXED and #GST_MEMORY_FLAG_ZERO_PADDED respectively.
706 * Returns: (transfer full): a new #GstBuffer
709 gst_buffer_new_wrapped_full (GstMemoryFlags flags, gpointer data,
710 gsize maxsize, gsize offset, gsize size, gpointer user_data,
711 GDestroyNotify notify)
715 newbuf = gst_buffer_new ();
716 gst_buffer_append_memory (newbuf,
717 gst_memory_new_wrapped (flags, data, maxsize, offset, size,
724 * gst_buffer_new_wrapped:
725 * @data: data to wrap
726 * @size: allocated size of @data
728 * Creates a new buffer that wraps the given @data. The memory will be freed
729 * with g_free and will be marked writable.
733 * Returns: (transfer full): a new #GstBuffer
736 gst_buffer_new_wrapped (gpointer data, gsize size)
738 return gst_buffer_new_wrapped_full (0, data, size, 0, size, data, g_free);
742 * gst_buffer_n_memory:
743 * @buffer: a #GstBuffer.
745 * Get the amount of memory blocks that this buffer has.
747 * Returns: (transfer full): the amount of memory block in this buffer.
750 gst_buffer_n_memory (GstBuffer * buffer)
752 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
754 return GST_BUFFER_MEM_LEN (buffer);
758 * gst_buffer_prepend_memory:
760 * @m: (transfer full): a #GstMemory.
762 * Prepend the memory block @m to @b. This function takes ownership
763 * of @m and thus doesn't increase its refcount.
766 * gst_buffer_append_memory:
768 * @m: (transfer full): a #GstMemory.
770 * Append the memory block @m to @b. This function takes ownership
771 * of @m and thus doesn't increase its refcount.
774 * gst_buffer_insert_memory:
775 * @buffer: a #GstBuffer.
776 * @idx: the index to add the memory at, or -1 to append it to the end
777 * @mem: (transfer full): a #GstMemory.
779 * Insert the memory block @mem to @buffer at @idx. This function takes ownership
780 * of @mem and thus doesn't increase its refcount.
783 gst_buffer_insert_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
785 g_return_if_fail (GST_IS_BUFFER (buffer));
786 g_return_if_fail (gst_buffer_is_writable (buffer));
787 g_return_if_fail (mem != NULL);
788 g_return_if_fail (idx == -1 ||
789 (idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
791 _memory_add (buffer, idx, mem, TRUE);
795 _get_mapped (GstBuffer * buffer, guint idx, GstMapInfo * info,
798 GstMemory *mem, *mapped;
800 mem = gst_memory_ref (GST_BUFFER_MEM_PTR (buffer, idx));
802 mapped = gst_memory_make_mapped (mem, info, flags);
805 /* memory changed, lock new memory */
806 gst_memory_lock (mapped, GST_LOCK_FLAG_EXCLUSIVE);
807 GST_BUFFER_MEM_PTR (buffer, idx) = mapped;
808 /* unlock old memory */
809 gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
811 gst_memory_unref (mem);
817 * gst_buffer_peek_memory:
818 * @buffer: a #GstBuffer.
821 * Get the memory block at @idx in @buffer. The memory block stays valid until
822 * the memory block in @buffer is removed, replaced or merged, typically with
823 * any call that modifies the memory in @buffer.
825 * Since this call does not influence the refcount of the memory,
826 * gst_memory_is_writable() can be used to check if @buffer is the sole owner
827 * of the returned memory.
829 * Returns: (transfer none): the #GstMemory at @idx.
832 gst_buffer_peek_memory (GstBuffer * buffer, guint idx)
836 g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
837 len = GST_BUFFER_MEM_LEN (buffer);
838 g_return_val_if_fail (idx < len, NULL);
840 return GST_BUFFER_MEM_PTR (buffer, idx);
844 * gst_buffer_get_memory:
848 * Get the memory block at index @i in @buffer.
850 * Returns: (transfer full): a #GstMemory that contains the data of the
851 * memory block at @idx. Use gst_memory_unref () after usage.
854 * gst_buffer_get_all_memory:
857 * Get all the memory block in @buffer. The memory blocks will be merged
858 * into one large #GstMemory.
860 * Returns: (transfer full): a #GstMemory that contains the merged memory.
861 * Use gst_memory_unref () after usage.
864 * gst_buffer_get_memory_range:
865 * @buffer: a #GstBuffer.
869 * Get @length memory blocks in @buffer starting at @idx. The memory blocks will
870 * be merged into one large #GstMemory.
872 * If @length is -1, all memory starting from @idx is merged.
874 * Returns: (transfer full): a #GstMemory that contains the merged data of @length
875 * blocks starting at @idx. Use gst_memory_unref () after usage.
878 gst_buffer_get_memory_range (GstBuffer * buffer, guint idx, gint length)
882 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
884 g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
885 len = GST_BUFFER_MEM_LEN (buffer);
886 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
887 (length == -1 && idx < len) || (length > 0 && length + idx <= len), NULL);
892 return _get_merged_memory (buffer, idx, length);
896 * gst_buffer_replace_memory:
899 * @m: (transfer full): a #GstMemory
901 * Replaces the memory block at index @i in @b with @m.
904 * gst_buffer_replace_all_memory:
906 * @m: (transfer full): a #GstMemory
908 * Replaces all memory in @b with @m.
911 * gst_buffer_replace_memory_range:
912 * @buffer: a #GstBuffer.
914 * @length: a length should not be 0
915 * @mem: (transfer full): a #GstMemory
917 * Replaces @length memory blocks in @buffer starting at @idx with @mem.
919 * If @length is -1, all memory starting from @idx will be removed and
920 * replaced with @mem.
922 * @buffer should be writable.
925 gst_buffer_replace_memory_range (GstBuffer * buffer, guint idx, gint length,
930 g_return_if_fail (GST_IS_BUFFER (buffer));
931 g_return_if_fail (gst_buffer_is_writable (buffer));
933 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d, %p", idx, length, mem);
935 len = GST_BUFFER_MEM_LEN (buffer);
936 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
937 (length == -1 && idx < len) || (length > 0 && length + idx <= len));
942 _replace_memory (buffer, len, idx, length, mem);
946 * gst_buffer_remove_memory:
950 * Remove the memory block in @b at index @i.
953 * gst_buffer_remove_all_memory:
956 * Remove all the memory blocks in @b.
959 * gst_buffer_remove_memory_range:
960 * @buffer: a #GstBuffer.
964 * Remove @length memory blocks in @buffer starting from @idx.
966 * @length can be -1, in which case all memory starting from @idx is removed.
969 gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, gint length)
973 g_return_if_fail (GST_IS_BUFFER (buffer));
974 g_return_if_fail (gst_buffer_is_writable (buffer));
976 GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
978 len = GST_BUFFER_MEM_LEN (buffer);
979 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
980 (length == -1 && idx < len) || length + idx <= len);
985 _replace_memory (buffer, len, idx, length, NULL);
989 * gst_buffer_find_memory:
990 * @buffer: a #GstBuffer.
993 * @idx: (out): pointer to index
994 * @length: (out): pointer to length
995 * @skip: (out): pointer to skip
997 * Find the memory blocks that span @size bytes starting from @offset
1000 * When this function returns %TRUE, @idx will contain the index of the first
1001 * memory bock where the byte for @offset can be found and @length contains the
1002 * number of memory blocks containing the @size remaining bytes. @skip contains
1003 * the number of bytes to skip in the memory bock at @idx to get to the byte
1006 * @size can be -1 to get all the memory blocks after @idx.
1008 * Returns: %TRUE when @size bytes starting from @offset could be found in
1009 * @buffer and @idx, @length and @skip will be filled.
1012 gst_buffer_find_memory (GstBuffer * buffer, gsize offset, gsize size,
1013 guint * idx, guint * length, gsize * skip)
1015 guint i, len, found;
1017 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1018 g_return_val_if_fail (idx != NULL, FALSE);
1019 g_return_val_if_fail (length != NULL, FALSE);
1020 g_return_val_if_fail (skip != NULL, FALSE);
1022 len = GST_BUFFER_MEM_LEN (buffer);
1025 for (i = 0; i < len; i++) {
1029 mem = GST_BUFFER_MEM_PTR (buffer, i);
1030 s = gst_memory_get_sizes (mem, NULL, NULL);
1033 /* block before offset, or empty block, skip */
1036 /* block after offset */
1038 /* first block, remember index and offset */
1042 /* return remaining blocks */
1049 /* count the amount of found bytes */
1051 if (found >= size) {
1052 /* we have enough bytes */
1053 *length = i - *idx + 1;
1062 * gst_buffer_get_sizes:
1064 * @of: a pointer to the offset
1065 * @ms: a pointer to the maxsize
1067 * Get the total size of the memory blocks in @b.
1069 * When not %NULL, @of will contain the offset of the data in the first
1070 * memory block in @buffer and @maxsize will contain the sum of the size
1071 * and @of and the amount of extra padding on the last memory block.
1072 * @of and @ms can be used to resize the buffer memory blocks with
1073 * gst_buffer_resize().
1075 * Returns: total size of the memory blocks in @b.
1078 * gst_buffer_get_size:
1081 * Get the total size of the memory blocks in @b.
1083 * Returns: total size of the memory blocks in @b.
1086 * gst_buffer_get_sizes_range:
1087 * @buffer: a #GstBuffer.
1090 * @offset: a pointer to the offset
1091 * @maxsize: a pointer to the maxsize
1093 * Get the total size of @length memory blocks stating from @idx in @buffer.
1095 * When not %NULL, @offset will contain the offset of the data in the
1096 * memory block in @buffer at @idx and @maxsize will contain the sum of the size
1097 * and @offset and the amount of extra padding on the memory block at @idx +
1099 * @offset and @maxsize can be used to resize the buffer memory blocks with
1100 * gst_buffer_resize_range().
1102 * Returns: total size of @length memory blocks starting at @idx in @buffer.
1105 gst_buffer_get_sizes_range (GstBuffer * buffer, guint idx, gint length,
1106 gsize * offset, gsize * maxsize)
1112 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1113 len = GST_BUFFER_MEM_LEN (buffer);
1114 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1115 (length == -1 && idx < len) || (length + idx <= len), 0);
1120 if (G_LIKELY (length == 1)) {
1122 mem = GST_BUFFER_MEM_PTR (buffer, idx);
1123 size = gst_memory_get_sizes (mem, offset, maxsize);
1129 size = offs = extra = 0;
1130 for (i = idx; i < end; i++) {
1133 mem = GST_BUFFER_MEM_PTR (buffer, i);
1134 s = gst_memory_get_sizes (mem, &o, &ms);
1138 /* first size, take accumulated data before as the offset */
1142 /* save the amount of data after this block */
1143 extra = ms - (o + s);
1145 /* empty block, add as extra */
1152 *maxsize = offs + size + extra;
1158 * gst_buffer_resize:
1160 * @of: the offset adjustement
1161 * @s: the new size or -1 to just adjust the offset
1163 * Set the offset and total size of the memory blocks in @b.
1166 * gst_buffer_set_size:
1170 * Set the total size of the memory blocks in @b.
1173 * gst_buffer_resize_range:
1174 * @buffer: a #GstBuffer.
1177 * @offset: the offset adjustement
1178 * @size: the new size or -1 to just adjust the offset
1180 * Set the total size of the @length memory blocks starting at @idx in
1184 gst_buffer_resize_range (GstBuffer * buffer, guint idx, gint length,
1185 gssize offset, gssize size)
1188 gsize bsize, bufsize, bufoffs, bufmax;
1190 g_return_if_fail (gst_buffer_is_writable (buffer));
1191 g_return_if_fail (size >= -1);
1192 len = GST_BUFFER_MEM_LEN (buffer);
1193 g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1194 (length == -1 && idx < len) || (length + idx <= len));
1199 bufsize = gst_buffer_get_sizes_range (buffer, idx, length, &bufoffs, &bufmax);
1201 GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
1202 " size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
1203 G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
1205 /* we can't go back further than the current offset or past the end of the
1207 g_return_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
1208 && bufoffs + offset <= bufmax));
1210 g_return_if_fail (bufsize >= offset);
1211 size = bufsize - offset;
1213 g_return_if_fail (bufmax >= bufoffs + offset + size);
1216 if (offset == 0 && size == bufsize)
1221 for (i = idx; i < end; i++) {
1225 mem = GST_BUFFER_MEM_PTR (buffer, i);
1226 bsize = gst_memory_get_sizes (mem, NULL, NULL);
1229 /* last buffer always gets resized to the remaining size */
1232 /* shrink buffers before the offset */
1233 else if ((gssize) bsize <= offset) {
1235 noffs = offset - bsize;
1238 /* clip other buffers */
1240 left = MIN (bsize - offset, size);
1242 if (offset != 0 || left != bsize) {
1243 if (gst_memory_is_writable (mem)) {
1244 gst_memory_resize (mem, offset, left);
1248 if (GST_MEMORY_IS_NO_SHARE (mem))
1249 newmem = gst_memory_copy (mem, offset, left);
1251 newmem = gst_memory_share (mem, offset, left);
1253 gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
1254 GST_BUFFER_MEM_PTR (buffer, i) = newmem;
1255 gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
1256 gst_memory_unref (mem);
1268 * @i: (out): info about the mapping
1269 * @f: flags for the mapping
1271 * This function fills @i with the #GstMapInfo of all merged memory blocks
1274 * @flags describe the desired access of the memory. When @flags is
1275 * #GST_MAP_WRITE, @buffer should be writable (as returned from
1276 * gst_buffer_is_writable()).
1278 * When @buffer is writable but the memory isn't, a writable copy will
1279 * automatically be created and returned. The readonly copy of the buffer memory
1280 * will then also be replaced with this writable copy.
1282 * The memory in @i should be unmapped with gst_buffer_unmap() after usage.
1284 * Returns: %TRUE if the map succeeded and @i contains valid data.
1287 * gst_buffer_map_range:
1288 * @buffer: a #GstBuffer.
1291 * @info: (out): info about the mapping
1292 * @flags: flags for the mapping
1294 * This function fills @info with the #GstMapInfo of @length merged memory blocks
1295 * starting at @idx in @buffer. When @length is -1, all memory blocks starting
1296 * from @idx are merged and mapped.
1298 * @flags describe the desired access of the memory. When @flags is
1299 * #GST_MAP_WRITE, @buffer should be writable (as returned from
1300 * gst_buffer_is_writable()).
1302 * When @buffer is writable but the memory isn't, a writable copy will
1303 * automatically be created and returned. The readonly copy of the buffer memory
1304 * will then also be replaced with this writable copy.
1306 * The memory in @info should be unmapped with gst_buffer_unmap() after usage.
1308 * Returns: %TRUE if the map succeeded and @info contains valid
1312 gst_buffer_map_range (GstBuffer * buffer, guint idx, gint length,
1313 GstMapInfo * info, GstMapFlags flags)
1315 GstMemory *mem, *nmem;
1316 gboolean write, writable;
1319 g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1320 g_return_val_if_fail (info != NULL, FALSE);
1321 len = GST_BUFFER_MEM_LEN (buffer);
1322 g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1323 (length == -1 && idx < len) || (length > 0
1324 && length + idx <= len), FALSE);
1326 GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %d, flags %04x",
1327 buffer, idx, length, flags);
1329 write = (flags & GST_MAP_WRITE) != 0;
1330 writable = gst_buffer_is_writable (buffer);
1332 /* check if we can write when asked for write access */
1333 if (G_UNLIKELY (write && !writable))
1339 mem = _get_merged_memory (buffer, idx, length);
1340 if (G_UNLIKELY (mem == NULL))
1343 /* now try to map */
1344 nmem = gst_memory_make_mapped (mem, info, flags);
1345 if (G_UNLIKELY (nmem == NULL))
1348 /* if we merged or when the map returned a different memory, we try to replace
1349 * the memory in the buffer */
1350 if (G_UNLIKELY (length > 1 || nmem != mem)) {
1351 /* if the buffer is writable, replace the memory */
1353 _replace_memory (buffer, len, idx, length, gst_memory_ref (nmem));
1356 GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
1357 "temporary mapping for memory %p in buffer %p", nmem, buffer);
1366 GST_WARNING_OBJECT (buffer, "write map requested on non-writable buffer");
1367 g_critical ("write map requested on non-writable buffer");
1372 /* empty buffer, we need to return NULL */
1373 GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
1374 info->memory = NULL;
1382 GST_DEBUG_OBJECT (buffer, "cannot map memory");
1389 * @buffer: a #GstBuffer.
1390 * @info: a #GstMapInfo
1392 * Release the memory previously mapped with gst_buffer_map().
1395 gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
1397 g_return_if_fail (GST_IS_BUFFER (buffer));
1398 g_return_if_fail (info != NULL);
1400 /* we need to check for NULL, it is possible that we tried to map a buffer
1401 * without memory and we should be able to unmap that fine */
1402 if (G_LIKELY (info->memory)) {
1403 gst_memory_unmap (info->memory, info);
1404 gst_memory_unref (info->memory);
1410 * @buffer: a #GstBuffer.
1411 * @offset: the offset to fill
1412 * @src: the source address
1413 * @size: the size to fill
1415 * Copy @size bytes from @src to @buffer at @offset.
1417 * Returns: The amount of bytes copied. This value can be lower than @size
1418 * when @buffer did not contain enough data.
1421 gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
1425 const guint8 *ptr = src;
1427 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1428 g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1429 g_return_val_if_fail (src != NULL, 0);
1431 GST_CAT_LOG (GST_CAT_BUFFER,
1432 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1435 len = GST_BUFFER_MEM_LEN (buffer);
1438 for (i = 0; i < len && left > 0; i++) {
1443 mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1444 if (info.size > offset) {
1445 /* we have enough */
1446 tocopy = MIN (info.size - offset, left);
1447 memcpy ((guint8 *) info.data + offset, ptr, tocopy);
1452 /* offset past buffer, skip */
1453 offset -= info.size;
1455 gst_memory_unmap (mem, &info);
1461 * gst_buffer_extract:
1462 * @buffer: a #GstBuffer.
1463 * @offset: the offset to extract
1464 * @dest: the destination address
1465 * @size: the size to extract
1467 * Copy @size bytes starting from @offset in @buffer to @dest.
1469 * Returns: The amount of bytes extracted. This value can be lower than @size
1470 * when @buffer did not contain enough data.
1473 gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
1478 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1479 g_return_val_if_fail (dest != NULL, 0);
1481 GST_CAT_LOG (GST_CAT_BUFFER,
1482 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1485 len = GST_BUFFER_MEM_LEN (buffer);
1488 for (i = 0; i < len && left > 0; i++) {
1493 mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1494 if (info.size > offset) {
1495 /* we have enough */
1496 tocopy = MIN (info.size - offset, left);
1497 memcpy (ptr, (guint8 *) info.data + offset, tocopy);
1502 /* offset past buffer, skip */
1503 offset -= info.size;
1505 gst_memory_unmap (mem, &info);
1511 * gst_buffer_memcmp:
1512 * @buffer: a #GstBuffer.
1513 * @offset: the offset in @buffer
1514 * @mem: the memory to compare
1515 * @size: the size to compare
1517 * Compare @size bytes starting from @offset in @buffer with the memory in @mem.
1519 * Returns: 0 if the memory is equal.
1522 gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
1526 const guint8 *ptr = mem;
1529 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1530 g_return_val_if_fail (mem != NULL, 0);
1532 GST_CAT_LOG (GST_CAT_BUFFER,
1533 "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1536 len = GST_BUFFER_MEM_LEN (buffer);
1538 for (i = 0; i < len && size > 0 && res == 0; i++) {
1543 mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1544 if (info.size > offset) {
1545 /* we have enough */
1546 tocmp = MIN (info.size - offset, size);
1547 res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
1552 /* offset past buffer, skip */
1553 offset -= info.size;
1555 gst_memory_unmap (mem, &info);
1561 * gst_buffer_memset:
1562 * @buffer: a #GstBuffer.
1563 * @offset: the offset in @buffer
1564 * @val: the value to set
1565 * @size: the size to set
1567 * Fill @buf with @size bytes with @val starting from @offset.
1569 * Returns: The amount of bytes filled. This value can be lower than @size
1570 * when @buffer did not contain enough data.
1573 gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
1577 g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1578 g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1580 GST_CAT_LOG (GST_CAT_BUFFER,
1581 "buffer %p, offset %" G_GSIZE_FORMAT ", val %02x, size %" G_GSIZE_FORMAT,
1582 buffer, offset, val, size);
1584 len = GST_BUFFER_MEM_LEN (buffer);
1587 for (i = 0; i < len && left > 0; i++) {
1592 mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1593 if (info.size > offset) {
1594 /* we have enough */
1595 toset = MIN (info.size - offset, left);
1596 memset ((guint8 *) info.data + offset, val, toset);
1600 /* offset past buffer, skip */
1601 offset -= info.size;
1603 gst_memory_unmap (mem, &info);
1609 * gst_buffer_copy_region:
1610 * @parent: a #GstBuffer.
1611 * @flags: the #GstBufferCopyFlags
1612 * @offset: the offset into parent #GstBuffer at which the new sub-buffer
1614 * @size: the size of the new #GstBuffer sub-buffer, in bytes.
1616 * Creates a sub-buffer from @parent at @offset and @size.
1617 * This sub-buffer uses the actual memory space of the parent buffer.
1618 * This function will copy the offset and timestamp fields when the
1619 * offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and
1620 * #GST_BUFFER_OFFSET_NONE.
1621 * If @offset equals 0 and @size equals the total size of @buffer, the
1622 * duration and offset end fields are also copied. If not they will be set
1623 * to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
1627 * Returns: (transfer full): the new #GstBuffer or NULL if the arguments were
1631 gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
1632 gsize offset, gsize size)
1636 g_return_val_if_fail (buffer != NULL, NULL);
1638 /* create the new buffer */
1639 copy = gst_buffer_new ();
1641 GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
1642 "-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
1644 gst_buffer_copy_into (copy, buffer, flags, offset, size);
1650 * gst_buffer_append:
1651 * @buf1: (transfer full): the first source #GstBuffer to append.
1652 * @buf2: (transfer full): the second source #GstBuffer to append.
1654 * Append all the memory from @buf2 to @buf1. The result buffer will contain a
1655 * concatenation of the memory of @buf1 and @buf2.
1657 * Returns: (transfer full): the new #GstBuffer that contains the memory
1658 * of the two source buffers.
1661 * gst_buffer_append_region:
1662 * @buf1: (transfer full): the first source #GstBuffer to append.
1663 * @buf2: (transfer full): the second source #GstBuffer to append.
1664 * @offset: the offset in @buf2
1665 * @size: the size or -1 of @buf2
1667 * Append @size bytes at @offset from @buf2 to @buf1. The result buffer will
1668 * contain a concatenation of the memory of @buf1 and the requested region of
1671 * Returns: (transfer full): the new #GstBuffer that contains the memory
1672 * of the two source buffers.
1675 gst_buffer_append_region (GstBuffer * buf1, GstBuffer * buf2, gssize offset,
1680 g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
1681 g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
1683 buf1 = gst_buffer_make_writable (buf1);
1684 buf2 = gst_buffer_make_writable (buf2);
1686 gst_buffer_resize (buf2, offset, size);
1688 len = GST_BUFFER_MEM_LEN (buf2);
1689 for (i = 0; i < len; i++) {
1692 mem = GST_BUFFER_MEM_PTR (buf2, i);
1693 GST_BUFFER_MEM_PTR (buf2, i) = NULL;
1694 _memory_add (buf1, -1, mem, FALSE);
1697 GST_BUFFER_MEM_LEN (buf2) = 0;
1698 gst_buffer_unref (buf2);
1704 * gst_buffer_get_meta:
1705 * @buffer: a #GstBuffer
1706 * @api: the #GType of an API
1708 * Get the metadata for @api on buffer. When there is no such
1709 * metadata, NULL is returned.
1711 * Returns: (transfer none): the metadata for @api on @buffer.
1714 gst_buffer_get_meta (GstBuffer * buffer, GType api)
1717 GstMeta *result = NULL;
1719 g_return_val_if_fail (buffer != NULL, NULL);
1720 g_return_val_if_fail (api != 0, NULL);
1722 /* find GstMeta of the requested API */
1723 for (item = GST_BUFFER_META (buffer); item; item = item->next) {
1724 GstMeta *meta = &item->meta;
1725 if (meta->info->api == api) {
1734 * gst_buffer_add_meta:
1735 * @buffer: a #GstBuffer
1736 * @info: a #GstMetaInfo
1737 * @params: params for @info
1739 * Add metadata for @info to @buffer using the parameters in @params.
1741 * Returns: (transfer none): the metadata for the api in @info on @buffer.
1744 gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
1748 GstMeta *result = NULL;
1751 g_return_val_if_fail (buffer != NULL, NULL);
1752 g_return_val_if_fail (info != NULL, NULL);
1753 g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
1755 /* create a new slice */
1756 size = ITEM_SIZE (info);
1757 item = g_slice_alloc (size);
1758 result = &item->meta;
1759 result->info = info;
1760 result->flags = GST_META_FLAG_NONE;
1762 GST_CAT_DEBUG (GST_CAT_BUFFER,
1763 "alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
1764 g_type_name (info->type), info->size);
1766 /* call the init_func when needed */
1767 if (info->init_func)
1768 if (!info->init_func (result, params, buffer))
1771 /* and add to the list of metadata */
1772 item->next = GST_BUFFER_META (buffer);
1773 GST_BUFFER_META (buffer) = item;
1779 g_slice_free1 (size, item);
1785 * gst_buffer_remove_meta:
1786 * @buffer: a #GstBuffer
1789 * Remove the metadata for @meta on @buffer.
1791 * Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
1792 * metadata was on @buffer.
1795 gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
1797 GstMetaItem *walk, *prev;
1799 g_return_val_if_fail (buffer != NULL, FALSE);
1800 g_return_val_if_fail (meta != NULL, FALSE);
1801 g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
1802 g_return_val_if_fail (!GST_META_FLAG_IS_SET (meta, GST_META_FLAG_LOCKED),
1805 /* find the metadata and delete */
1806 prev = GST_BUFFER_META (buffer);
1807 for (walk = prev; walk; walk = walk->next) {
1808 GstMeta *m = &walk->meta;
1810 const GstMetaInfo *info = meta->info;
1812 /* remove from list */
1813 if (GST_BUFFER_META (buffer) == walk)
1814 GST_BUFFER_META (buffer) = walk->next;
1816 prev->next = walk->next;
1817 /* call free_func if any */
1818 if (info->free_func)
1819 info->free_func (m, buffer);
1821 /* and free the slice */
1822 g_slice_free1 (ITEM_SIZE (info), walk);
1827 return walk != NULL;
1831 * gst_buffer_iterate_meta:
1832 * @buffer: a #GstBuffer
1833 * @state: an opaque state pointer
1835 * Retrieve the next #GstMeta after @current. If @state points
1836 * to %NULL, the first metadata is returned.
1838 * @state will be updated with an opage state pointer
1840 * Returns: (transfer none): The next #GstMeta or %NULL when there are
1844 gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
1848 g_return_val_if_fail (buffer != NULL, NULL);
1849 g_return_val_if_fail (state != NULL, NULL);
1851 meta = (GstMetaItem **) state;
1853 /* state NULL, move to first item */
1854 *meta = GST_BUFFER_META (buffer);
1856 /* state !NULL, move to next item in list */
1857 *meta = (*meta)->next;
1860 return &(*meta)->meta;
1866 * gst_buffer_foreach_meta:
1867 * @buffer: a #GstBuffer
1868 * @func: (scope call): a #GstBufferForeachMetaFunc to call
1869 * @user_data: (closure): user data passed to @func
1871 * Call @func with @user_data for each meta in @buffer.
1873 * @func can modify the passed meta pointer or its contents. The return value
1874 * of @func define if this function returns or if the remaining metadata items
1875 * in the buffer should be skipped.
1878 gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
1881 GstMetaItem *walk, *prev, *next;
1883 g_return_if_fail (buffer != NULL);
1884 g_return_if_fail (func != NULL);
1886 /* find the metadata and delete */
1887 prev = GST_BUFFER_META (buffer);
1888 for (walk = prev; walk; walk = next) {
1892 m = new = &walk->meta;
1895 res = func (buffer, &new, user_data);
1898 const GstMetaInfo *info = m->info;
1900 GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
1901 g_type_name (info->type));
1903 g_return_if_fail (gst_buffer_is_writable (buffer));
1904 g_return_if_fail (!GST_META_FLAG_IS_SET (m, GST_META_FLAG_LOCKED));
1906 /* remove from list */
1907 if (GST_BUFFER_META (buffer) == walk)
1908 GST_BUFFER_META (buffer) = next;
1912 /* call free_func if any */
1913 if (info->free_func)
1914 info->free_func (m, buffer);
1916 /* and free the slice */
1917 g_slice_free1 (ITEM_SIZE (info), walk);