introspection: add missing (nullable) annotations to return values
[platform/upstream/gstreamer.git] / gst / gstbuffer.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstbuffer.c: Buffer operations
6  *
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.
11  *
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.
16  *
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.
21  */
22
23 /**
24  * SECTION:gstbuffer
25  * @short_description: Data-passing buffer type
26  * @see_also: #GstPad, #GstMiniObject, #GstMemory, #GstMeta, #GstBufferPool
27  *
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.
31  *
32  * Buffers are usually created with gst_buffer_new(). After a buffer has been
33  * created one will typically allocate memory for it and add it to the buffer.
34  * The following example creates a buffer that can hold a given video frame
35  * with a given width, height and bits per plane.
36  * |[
37  *   GstBuffer *buffer;
38  *   GstMemory *memory;
39  *   gint size, width, height, bpp;
40  *   ...
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);
45  *   ...
46  * ]|
47  *
48  * Alternatively, use gst_buffer_new_allocate() to create a buffer with
49  * preallocated data of a given size.
50  *
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()
54  *
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).
59  *
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.
64  *
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.
73  *
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.
79  *
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.
83  *
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.
88  *
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.
92  *
93  * Buffers can be efficiently merged into a larger buffer with
94  * gst_buffer_append(). Copying of memory will only be done when absolutely
95  * needed.
96  *
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
99  *
100  * An element should either unref the buffer or push it out on a src pad
101  * using gst_pad_push() (see #GstPad).
102  *
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.
107  */
108 #include "gst_private.h"
109
110 #ifdef HAVE_UNISTD_H
111 #include <unistd.h>
112 #endif
113 #ifdef HAVE_STDLIB_H
114 #include <stdlib.h>
115 #endif
116
117 #include "gstbuffer.h"
118 #include "gstbufferpool.h"
119 #include "gstinfo.h"
120 #include "gstutils.h"
121 #include "gstversion.h"
122
123 GType _gst_buffer_type = 0;
124
125 typedef struct _GstMetaItem GstMetaItem;
126
127 struct _GstMetaItem
128 {
129   GstMetaItem *next;
130   GstMeta meta;
131 };
132 #define ITEM_SIZE(info) ((info)->size + sizeof (GstMetaItem))
133
134 #define GST_BUFFER_MEM_MAX         16
135
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)
142
143 typedef struct
144 {
145   GstBuffer buffer;
146
147   gsize slice_size;
148
149   /* the memory blocks */
150   guint len;
151   GstMemory *mem[GST_BUFFER_MEM_MAX];
152
153   /* memory of the buffer when allocated from 1 chunk */
154   GstMemory *bufmem;
155
156   /* FIXME, make metadata allocation more efficient by using part of the
157    * GstBufferImpl */
158   GstMetaItem *item;
159 } GstBufferImpl;
160
161
162 static gboolean
163 _is_span (GstMemory ** mem, gsize len, gsize * poffset, GstMemory ** parent)
164 {
165   GstMemory *mcur, *mprv;
166   gboolean have_offset = FALSE;
167   gsize i;
168
169   mcur = mprv = NULL;
170
171   for (i = 0; i < len; i++) {
172     if (mcur)
173       mprv = mcur;
174     mcur = mem[i];
175
176     if (mprv && mcur) {
177       gsize poffs;
178
179       /* check if memory is contiguous */
180       if (!gst_memory_is_span (mprv, mcur, &poffs))
181         return FALSE;
182
183       if (!have_offset) {
184         if (poffset)
185           *poffset = poffs;
186         if (parent)
187           *parent = mprv->parent;
188
189         have_offset = TRUE;
190       }
191     }
192   }
193   return have_offset;
194 }
195
196 static GstMemory *
197 _get_merged_memory (GstBuffer * buffer, guint idx, guint length)
198 {
199   GstMemory **mem, *result = NULL;
200
201   GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %u", buffer, idx,
202       length);
203
204   mem = GST_BUFFER_MEM_ARRAY (buffer);
205
206   if (G_UNLIKELY (length == 0)) {
207     result = NULL;
208   } else if (G_LIKELY (length == 1)) {
209     result = gst_memory_ref (mem[idx]);
210   } else {
211     GstMemory *parent = NULL;
212     gsize size, poffset = 0;
213
214     size = gst_buffer_get_sizes_range (buffer, idx, length, NULL, NULL);
215
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);
219       if (!result) {
220         GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy for merge %p", parent);
221         result = gst_memory_copy (parent, poffset, size);
222       }
223     } else {
224       gsize i, tocopy, left;
225       GstMapInfo sinfo, dinfo;
226       guint8 *ptr;
227
228       result = gst_allocator_alloc (NULL, size, NULL);
229       gst_memory_map (result, &dinfo, GST_MAP_WRITE);
230
231       ptr = dinfo.data;
232       left = size;
233
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);
241         left -= tocopy;
242         ptr += tocopy;
243         gst_memory_unmap (mem[i], &sinfo);
244       }
245       gst_memory_unmap (result, &dinfo);
246     }
247   }
248   return result;
249 }
250
251 static void
252 _replace_memory (GstBuffer * buffer, guint len, guint idx, guint length,
253     GstMemory * mem)
254 {
255   gsize end, i;
256
257   end = idx + length;
258
259   GST_CAT_LOG (GST_CAT_BUFFER,
260       "buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer, idx,
261       end, mem);
262
263   /* unref old memory */
264   for (i = idx; i < end; i++) {
265     GstMemory *old = GST_BUFFER_MEM_PTR (buffer, i);
266
267     gst_memory_unlock (old, GST_LOCK_FLAG_EXCLUSIVE);
268     gst_memory_unref (old);
269   }
270
271   if (mem != NULL) {
272     /* replace with single memory */
273     gst_memory_lock (mem, GST_LOCK_FLAG_EXCLUSIVE);
274     GST_BUFFER_MEM_PTR (buffer, idx) = mem;
275     idx++;
276     length--;
277   }
278
279   if (end < len) {
280     memmove (&GST_BUFFER_MEM_PTR (buffer, idx),
281         &GST_BUFFER_MEM_PTR (buffer, end), (len - end) * sizeof (gpointer));
282   }
283   GST_BUFFER_MEM_LEN (buffer) = len - length;
284   GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
285 }
286
287 static inline void
288 _memory_add (GstBuffer * buffer, gint idx, GstMemory * mem, gboolean lock)
289 {
290   guint i, len = GST_BUFFER_MEM_LEN (buffer);
291
292   GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %d, mem %p, lock %d", buffer,
293       idx, mem, lock);
294
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",
301         buffer);
302     _replace_memory (buffer, len, 0, len, _get_merged_memory (buffer, 0, len));
303     /* we now have 1 single spanned buffer */
304     len = 1;
305   }
306
307   if (idx == -1)
308     idx = len;
309
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);
313   }
314   /* and insert the new buffer */
315   if (lock)
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;
319
320   GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
321 }
322
323 GST_DEFINE_MINI_OBJECT_TYPE (GstBuffer, gst_buffer);
324
325 void
326 _priv_gst_buffer_initialize (void)
327 {
328   _gst_buffer_type = gst_buffer_get_type ();
329 }
330
331 /**
332  * gst_buffer_get_max_memory:
333  *
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.
336  *
337  * When more memory blocks are added, existing memory blocks will be merged
338  * together to make room for the new block.
339  *
340  * Returns: the maximum amount of memory blocks that a buffer can hold.
341  *
342  * Since: 1.2
343  */
344 guint
345 gst_buffer_get_max_memory (void)
346 {
347   return GST_BUFFER_MEM_MAX;
348 }
349
350 /**
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.
357  *
358  * Copies the information from @src into @dest.
359  *
360  * If @dest already contains memory and @flags contains GST_BUFFER_COPY_MEMORY,
361  * the memory from @src will be appended to @dest.
362  *
363  * @flags indicate which fields will be copied.
364  *
365  * Returns: %TRUE if the copying succeeded, %FALSE otherwise.
366  */
367 gboolean
368 gst_buffer_copy_into (GstBuffer * dest, GstBuffer * src,
369     GstBufferCopyFlags flags, gsize offset, gsize size)
370 {
371   GstMetaItem *walk;
372   gsize bufsize;
373   gboolean region = FALSE;
374
375   g_return_val_if_fail (dest != NULL, FALSE);
376   g_return_val_if_fail (src != NULL, FALSE);
377
378   /* nothing to copy if the buffers are the same */
379   if (G_UNLIKELY (dest == src))
380     return TRUE;
381
382   g_return_val_if_fail (gst_buffer_is_writable (dest), FALSE);
383
384   bufsize = gst_buffer_get_size (src);
385   g_return_val_if_fail (bufsize >= offset, FALSE);
386   if (offset > 0)
387     region = TRUE;
388   if (size == -1)
389     size = bufsize - offset;
390   if (size < bufsize)
391     region = TRUE;
392   g_return_val_if_fail (bufsize >= offset + size, FALSE);
393
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,
396       bufsize);
397
398   if (flags & GST_BUFFER_COPY_FLAGS) {
399     /* copy flags */
400     GST_MINI_OBJECT_FLAGS (dest) = GST_MINI_OBJECT_FLAGS (src);
401   }
402
403   if (flags & GST_BUFFER_COPY_TIMESTAMPS) {
404     if (offset == 0) {
405       GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
406       GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
407       GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
408       if (size == bufsize) {
409         GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
410         GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
411       }
412     } else {
413       GST_BUFFER_PTS (dest) = GST_CLOCK_TIME_NONE;
414       GST_BUFFER_DTS (dest) = GST_CLOCK_TIME_NONE;
415       GST_BUFFER_DURATION (dest) = GST_CLOCK_TIME_NONE;
416       GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET_NONE;
417       GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_NONE;
418     }
419   }
420
421   if (flags & GST_BUFFER_COPY_MEMORY) {
422     gsize skip, left, len, dest_len, i, bsize;
423     gboolean deep;
424
425     deep = flags & GST_BUFFER_COPY_DEEP;
426
427     len = GST_BUFFER_MEM_LEN (src);
428     dest_len = GST_BUFFER_MEM_LEN (dest);
429     left = size;
430     skip = offset;
431
432     /* copy and make regions of the memory */
433     for (i = 0; i < len && left > 0; i++) {
434       GstMemory *mem = GST_BUFFER_MEM_PTR (src, i);
435
436       bsize = gst_memory_get_sizes (mem, NULL, NULL);
437
438       if (bsize <= skip) {
439         /* don't copy buffer */
440         skip -= bsize;
441       } else {
442         GstMemory *newmem = NULL;
443         gsize tocopy;
444
445         tocopy = MIN (bsize - skip, left);
446
447         if (tocopy < bsize && !deep && !GST_MEMORY_IS_NO_SHARE (mem)) {
448           /* we need to clip something */
449           newmem = gst_memory_share (mem, skip, tocopy);
450           if (newmem)
451             skip = 0;
452         }
453
454         if (deep || GST_MEMORY_IS_NO_SHARE (mem) || (!newmem && tocopy < bsize)) {
455           /* deep copy or we're not allowed to share this memory
456            * between buffers, always copy then */
457           newmem = gst_memory_copy (mem, skip, tocopy);
458           skip = 0;
459         } else if (!newmem) {
460           newmem = gst_memory_ref (mem);
461         }
462
463         if (!newmem) {
464           gst_buffer_remove_memory_range (dest, dest_len, -1);
465           return FALSE;
466         }
467
468         _memory_add (dest, -1, newmem, TRUE);
469         left -= tocopy;
470       }
471     }
472     if (flags & GST_BUFFER_COPY_MERGE) {
473       GstMemory *mem;
474
475       len = GST_BUFFER_MEM_LEN (dest);
476       mem = _get_merged_memory (dest, 0, len);
477       if (!mem) {
478         gst_buffer_remove_memory_range (dest, dest_len, -1);
479         return FALSE;
480       }
481       _replace_memory (dest, len, 0, len, mem);
482     }
483   }
484
485   if (flags & GST_BUFFER_COPY_META) {
486     for (walk = GST_BUFFER_META (src); walk; walk = walk->next) {
487       GstMeta *meta = &walk->meta;
488       const GstMetaInfo *info = meta->info;
489
490       if (info->transform_func) {
491         GstMetaTransformCopy copy_data;
492
493         copy_data.region = region;
494         copy_data.offset = offset;
495         copy_data.size = size;
496
497         info->transform_func (dest, meta, src,
498             _gst_meta_transform_copy, &copy_data);
499       }
500     }
501   }
502
503   return TRUE;
504 }
505
506 static GstBuffer *
507 _gst_buffer_copy (GstBuffer * buffer)
508 {
509   GstBuffer *copy;
510
511   g_return_val_if_fail (buffer != NULL, NULL);
512
513   /* create a fresh new buffer */
514   copy = gst_buffer_new ();
515
516   /* we simply copy everything from our parent */
517   if (!gst_buffer_copy_into (copy, buffer, GST_BUFFER_COPY_ALL, 0, -1))
518     gst_buffer_replace (&copy, NULL);
519
520   if (copy)
521     GST_BUFFER_FLAG_UNSET (copy, GST_BUFFER_FLAG_TAG_MEMORY);
522
523   return copy;
524 }
525
526 /* the default dispose function revives the buffer and returns it to the
527  * pool when there is a pool */
528 static gboolean
529 _gst_buffer_dispose (GstBuffer * buffer)
530 {
531   GstBufferPool *pool;
532
533   /* no pool, do free */
534   if ((pool = buffer->pool) == NULL)
535     return TRUE;
536
537   /* keep the buffer alive */
538   gst_buffer_ref (buffer);
539   /* return the buffer to the pool */
540   GST_CAT_LOG (GST_CAT_BUFFER, "release %p to pool %p", buffer, pool);
541   gst_buffer_pool_release_buffer (pool, buffer);
542
543   return FALSE;
544 }
545
546 static void
547 _gst_buffer_free (GstBuffer * buffer)
548 {
549   GstMetaItem *walk, *next;
550   guint i, len;
551   gsize msize;
552
553   g_return_if_fail (buffer != NULL);
554
555   GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
556
557   /* free metadata */
558   for (walk = GST_BUFFER_META (buffer); walk; walk = next) {
559     GstMeta *meta = &walk->meta;
560     const GstMetaInfo *info = meta->info;
561
562     /* call free_func if any */
563     if (info->free_func)
564       info->free_func (meta, buffer);
565
566     next = walk->next;
567     /* and free the slice */
568     g_slice_free1 (ITEM_SIZE (info), walk);
569   }
570
571   /* get the size, when unreffing the memory, we could also unref the buffer
572    * itself */
573   msize = GST_BUFFER_SLICE_SIZE (buffer);
574
575   /* free our memory */
576   len = GST_BUFFER_MEM_LEN (buffer);
577   for (i = 0; i < len; i++) {
578     gst_memory_unlock (GST_BUFFER_MEM_PTR (buffer, i), GST_LOCK_FLAG_EXCLUSIVE);
579     gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
580   }
581
582   /* we set msize to 0 when the buffer is part of the memory block */
583   if (msize) {
584 #ifdef USE_POISONING
585     memset (buffer, 0xff, msize);
586 #endif
587     g_slice_free1 (msize, buffer);
588   } else {
589     gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
590   }
591 }
592
593 static void
594 gst_buffer_init (GstBufferImpl * buffer, gsize size)
595 {
596   gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), 0, _gst_buffer_type,
597       (GstMiniObjectCopyFunction) _gst_buffer_copy,
598       (GstMiniObjectDisposeFunction) _gst_buffer_dispose,
599       (GstMiniObjectFreeFunction) _gst_buffer_free);
600
601   GST_BUFFER_SLICE_SIZE (buffer) = size;
602
603   GST_BUFFER (buffer)->pool = NULL;
604   GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
605   GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
606   GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
607   GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
608   GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
609
610   GST_BUFFER_MEM_LEN (buffer) = 0;
611   GST_BUFFER_META (buffer) = NULL;
612 }
613
614 /**
615  * gst_buffer_new:
616  *
617  * Creates a newly allocated buffer without any data.
618  *
619  * MT safe.
620  *
621  * Returns: (transfer full): the new #GstBuffer.
622  */
623 GstBuffer *
624 gst_buffer_new (void)
625 {
626   GstBufferImpl *newbuf;
627
628   newbuf = g_slice_new (GstBufferImpl);
629   GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
630
631   gst_buffer_init (newbuf, sizeof (GstBufferImpl));
632
633   return GST_BUFFER_CAST (newbuf);
634 }
635
636 /**
637  * gst_buffer_new_allocate:
638  * @allocator: (transfer none) (allow-none): the #GstAllocator to use, or %NULL to use the
639  *     default allocator
640  * @size: the size in bytes of the new buffer's data.
641  * @params: (transfer none) (allow-none): optional parameters
642  *
643  * Tries to create a newly allocated buffer with data of the given size and
644  * extra parameters from @allocator. If the requested amount of memory can't be
645  * allocated, %NULL will be returned. The allocated buffer memory is not cleared.
646  *
647  * When @allocator is %NULL, the default memory allocator will be used.
648  *
649  * Note that when @size == 0, the buffer will not have memory associated with it.
650  *
651  * MT safe.
652  *
653  * Returns: (transfer full) (nullable): a new #GstBuffer, or %NULL if
654  *     the memory couldn't be allocated.
655  */
656 GstBuffer *
657 gst_buffer_new_allocate (GstAllocator * allocator, gsize size,
658     GstAllocationParams * params)
659 {
660   GstBuffer *newbuf;
661   GstMemory *mem;
662 #if 0
663   guint8 *data;
664   gsize asize;
665 #endif
666
667 #if 1
668   if (size > 0) {
669     mem = gst_allocator_alloc (allocator, size, params);
670     if (G_UNLIKELY (mem == NULL))
671       goto no_memory;
672   } else {
673     mem = NULL;
674   }
675
676   newbuf = gst_buffer_new ();
677
678   if (mem != NULL)
679     _memory_add (newbuf, -1, mem, TRUE);
680
681   GST_CAT_LOG (GST_CAT_BUFFER,
682       "new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
683       size, allocator);
684 #endif
685
686 #if 0
687   asize = sizeof (GstBufferImpl) + size;
688   data = g_slice_alloc (asize);
689   if (G_UNLIKELY (data == NULL))
690     goto no_memory;
691
692   newbuf = GST_BUFFER_CAST (data);
693
694   gst_buffer_init ((GstBufferImpl *) data, asize);
695   if (size > 0) {
696     mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
697         size, 0, size);
698     _memory_add (newbuf, -1, mem, TRUE);
699   }
700 #endif
701
702 #if 0
703   /* allocate memory and buffer, it might be interesting to do this but there
704    * are many complications. We need to keep the memory mapped to access the
705    * buffer fields and the memory for the buffer might be just very slow. We
706    * also need to do some more magic to get the alignment right. */
707   asize = sizeof (GstBufferImpl) + size;
708   mem = gst_allocator_alloc (allocator, asize, align);
709   if (G_UNLIKELY (mem == NULL))
710     goto no_memory;
711
712   /* map the data part and init the buffer in it, set the buffer size to 0 so
713    * that a finalize won't free the buffer */
714   data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
715   gst_buffer_init ((GstBufferImpl *) data, 0);
716   gst_memory_unmap (mem);
717
718   /* strip off the buffer */
719   gst_memory_resize (mem, sizeof (GstBufferImpl), size);
720
721   newbuf = GST_BUFFER_CAST (data);
722   GST_BUFFER_BUFMEM (newbuf) = mem;
723
724   if (size > 0)
725     _memory_add (newbuf, -1, gst_memory_ref (mem), TRUE);
726 #endif
727   GST_BUFFER_FLAG_UNSET (newbuf, GST_BUFFER_FLAG_TAG_MEMORY);
728
729   return newbuf;
730
731   /* ERRORS */
732 no_memory:
733   {
734     GST_CAT_WARNING (GST_CAT_BUFFER,
735         "failed to allocate %" G_GSIZE_FORMAT " bytes", size);
736     return NULL;
737   }
738 }
739
740 /**
741  * gst_buffer_new_wrapped_full:
742  * @flags: #GstMemoryFlags
743  * @data: (array length=size) (element-type guint8) (transfer none): data to wrap
744  * @maxsize: allocated size of @data
745  * @offset: offset in @data
746  * @size: size of valid data
747  * @user_data: (allow-none): user_data
748  * @notify: (allow-none) (scope async) (closure user_data): called with @user_data when the memory is freed
749  *
750  * Allocate a new buffer that wraps the given memory. @data must point to
751  * @maxsize of memory, the wrapped buffer will have the region from @offset and
752  * @size visible.
753  *
754  * When the buffer is destroyed, @notify will be called with @user_data.
755  *
756  * The prefix/padding must be filled with 0 if @flags contains
757  * #GST_MEMORY_FLAG_ZERO_PREFIXED and #GST_MEMORY_FLAG_ZERO_PADDED respectively.
758  *
759  * Returns: (transfer full): a new #GstBuffer
760  */
761 GstBuffer *
762 gst_buffer_new_wrapped_full (GstMemoryFlags flags, gpointer data,
763     gsize maxsize, gsize offset, gsize size, gpointer user_data,
764     GDestroyNotify notify)
765 {
766   GstMemory *mem;
767   GstBuffer *newbuf;
768
769   newbuf = gst_buffer_new ();
770   mem =
771       gst_memory_new_wrapped (flags, data, maxsize, offset, size, user_data,
772       notify);
773   _memory_add (newbuf, -1, mem, TRUE);
774   GST_BUFFER_FLAG_UNSET (newbuf, GST_BUFFER_FLAG_TAG_MEMORY);
775
776   return newbuf;
777 }
778
779 /**
780  * gst_buffer_new_wrapped:
781  * @data: (array length=size) (element-type guint8) (transfer full): data to wrap
782  * @size: allocated size of @data
783  *
784  * Creates a new buffer that wraps the given @data. The memory will be freed
785  * with g_free and will be marked writable.
786  *
787  * MT safe.
788  *
789  * Returns: (transfer full): a new #GstBuffer
790  */
791 GstBuffer *
792 gst_buffer_new_wrapped (gpointer data, gsize size)
793 {
794   return gst_buffer_new_wrapped_full (0, data, size, 0, size, data, g_free);
795 }
796
797 /**
798  * gst_buffer_n_memory:
799  * @buffer: a #GstBuffer.
800  *
801  * Get the amount of memory blocks that this buffer has. This amount is never
802  * larger than what gst_buffer_get_max_memory() returns.
803  *
804  * Returns: (transfer full): the amount of memory block in this buffer.
805  */
806 guint
807 gst_buffer_n_memory (GstBuffer * buffer)
808 {
809   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
810
811   return GST_BUFFER_MEM_LEN (buffer);
812 }
813
814 /**
815  * gst_buffer_prepend_memory:
816  * @buffer: a #GstBuffer.
817  * @mem: (transfer full): a #GstMemory.
818  *
819  * Prepend the memory block @mem to @buffer. This function takes
820  * ownership of @mem and thus doesn't increase its refcount.
821  *
822  * This function is identical to gst_buffer_insert_memory() with an index of 0.
823  * See gst_buffer_insert_memory() for more details.
824  */
825 void
826 gst_buffer_prepend_memory (GstBuffer * buffer, GstMemory * mem)
827 {
828   gst_buffer_insert_memory (buffer, 0, mem);
829 }
830
831 /**
832  * gst_buffer_append_memory:
833  * @buffer: a #GstBuffer.
834  * @mem: (transfer full): a #GstMemory.
835  *
836  * Append the memory block @mem to @buffer. This function takes
837  * ownership of @mem and thus doesn't increase its refcount.
838  *
839  * This function is identical to gst_buffer_insert_memory() with an index of -1.
840  * See gst_buffer_insert_memory() for more details.
841  */
842 void
843 gst_buffer_append_memory (GstBuffer * buffer, GstMemory * mem)
844 {
845   gst_buffer_insert_memory (buffer, -1, mem);
846 }
847
848 /**
849  * gst_buffer_insert_memory:
850  * @buffer: a #GstBuffer.
851  * @idx: the index to add the memory at, or -1 to append it to the end
852  * @mem: (transfer full): a #GstMemory.
853  *
854  * Insert the memory block @mem to @buffer at @idx. This function takes ownership
855  * of @mem and thus doesn't increase its refcount.
856  *
857  * Only gst_buffer_get_max_memory() can be added to a buffer. If more memory is
858  * added, existing memory blocks will automatically be merged to make room for
859  * the new memory.
860  */
861 void
862 gst_buffer_insert_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
863 {
864   g_return_if_fail (GST_IS_BUFFER (buffer));
865   g_return_if_fail (gst_buffer_is_writable (buffer));
866   g_return_if_fail (mem != NULL);
867   g_return_if_fail (idx == -1 ||
868       (idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
869
870   _memory_add (buffer, idx, mem, TRUE);
871 }
872
873 static GstMemory *
874 _get_mapped (GstBuffer * buffer, guint idx, GstMapInfo * info,
875     GstMapFlags flags)
876 {
877   GstMemory *mem, *mapped;
878
879   mem = gst_memory_ref (GST_BUFFER_MEM_PTR (buffer, idx));
880
881   mapped = gst_memory_make_mapped (mem, info, flags);
882
883   if (mapped != mem) {
884     /* memory changed, lock new memory */
885     gst_memory_lock (mapped, GST_LOCK_FLAG_EXCLUSIVE);
886     GST_BUFFER_MEM_PTR (buffer, idx) = mapped;
887     /* unlock old memory */
888     gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
889     GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
890   }
891   gst_memory_unref (mem);
892
893   return mapped;
894 }
895
896 /**
897  * gst_buffer_peek_memory:
898  * @buffer: a #GstBuffer.
899  * @idx: an index
900  *
901  * Get the memory block at @idx in @buffer. The memory block stays valid until
902  * the memory block in @buffer is removed, replaced or merged, typically with
903  * any call that modifies the memory in @buffer.
904  *
905  * Returns: (transfer none): the #GstMemory at @idx.
906  */
907 GstMemory *
908 gst_buffer_peek_memory (GstBuffer * buffer, guint idx)
909 {
910   guint len;
911
912   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
913   len = GST_BUFFER_MEM_LEN (buffer);
914   g_return_val_if_fail (idx < len, NULL);
915
916   return GST_BUFFER_MEM_PTR (buffer, idx);
917 }
918
919 /**
920  * gst_buffer_get_memory:
921  * @buffer: a #GstBuffer.
922  * @idx: an index
923  *
924  * Get the memory block at index @idx in @buffer.
925  *
926  * Returns: (transfer full): a #GstMemory that contains the data of the
927  * memory block at @idx. Use gst_memory_unref () after usage.
928  */
929 GstMemory *
930 gst_buffer_get_memory (GstBuffer * buffer, guint idx)
931 {
932   return gst_buffer_get_memory_range (buffer, idx, 1);
933 }
934
935 /**
936  * gst_buffer_get_all_memory:
937  * @buffer: a #GstBuffer.
938  *
939  * Get all the memory block in @buffer. The memory blocks will be merged
940  * into one large #GstMemory.
941  *
942  * Returns: (transfer full): a #GstMemory that contains the merged memory.
943  * Use gst_memory_unref () after usage.
944  */
945 GstMemory *
946 gst_buffer_get_all_memory (GstBuffer * buffer)
947 {
948   return gst_buffer_get_memory_range (buffer, 0, -1);
949 }
950
951 /**
952  * gst_buffer_get_memory_range:
953  * @buffer: a #GstBuffer.
954  * @idx: an index
955  * @length: a length
956  *
957  * Get @length memory blocks in @buffer starting at @idx. The memory blocks will
958  * be merged into one large #GstMemory.
959  *
960  * If @length is -1, all memory starting from @idx is merged.
961  *
962  * Returns: (transfer full): a #GstMemory that contains the merged data of @length
963  *    blocks starting at @idx. Use gst_memory_unref () after usage.
964  */
965 GstMemory *
966 gst_buffer_get_memory_range (GstBuffer * buffer, guint idx, gint length)
967 {
968   guint len;
969
970   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
971
972   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
973   len = GST_BUFFER_MEM_LEN (buffer);
974   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
975       (length == -1 && idx < len) || (length > 0 && length + idx <= len), NULL);
976
977   if (length == -1)
978     length = len - idx;
979
980   return _get_merged_memory (buffer, idx, length);
981 }
982
983 /**
984  * gst_buffer_replace_memory:
985  * @buffer: a #GstBuffer.
986  * @idx: an index
987  * @mem: (transfer full): a #GstMemory
988  *
989  * Replaces the memory block at index @idx in @buffer with @mem.
990  */
991 void
992 gst_buffer_replace_memory (GstBuffer * buffer, guint idx, GstMemory * mem)
993 {
994   gst_buffer_replace_memory_range (buffer, idx, 1, mem);
995 }
996
997 /**
998  * gst_buffer_replace_all_memory:
999  * @buffer: a #GstBuffer.
1000  * @mem: (transfer full): a #GstMemory
1001  *
1002  * Replaces all memory in @buffer with @mem.
1003  */
1004 void
1005 gst_buffer_replace_all_memory (GstBuffer * buffer, GstMemory * mem)
1006 {
1007   gst_buffer_replace_memory_range (buffer, 0, -1, mem);
1008 }
1009
1010 /**
1011  * gst_buffer_replace_memory_range:
1012  * @buffer: a #GstBuffer.
1013  * @idx: an index
1014  * @length: a length should not be 0
1015  * @mem: (transfer full): a #GstMemory
1016  *
1017  * Replaces @length memory blocks in @buffer starting at @idx with @mem.
1018  *
1019  * If @length is -1, all memory starting from @idx will be removed and
1020  * replaced with @mem.
1021  *
1022  * @buffer should be writable.
1023  */
1024 void
1025 gst_buffer_replace_memory_range (GstBuffer * buffer, guint idx, gint length,
1026     GstMemory * mem)
1027 {
1028   guint len;
1029
1030   g_return_if_fail (GST_IS_BUFFER (buffer));
1031   g_return_if_fail (gst_buffer_is_writable (buffer));
1032
1033   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d, %p", idx, length, mem);
1034
1035   len = GST_BUFFER_MEM_LEN (buffer);
1036   g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1037       (length == -1 && idx < len) || (length > 0 && length + idx <= len));
1038
1039   if (length == -1)
1040     length = len - idx;
1041
1042   _replace_memory (buffer, len, idx, length, mem);
1043 }
1044
1045 /**
1046  * gst_buffer_remove_memory:
1047  * @buffer: a #GstBuffer.
1048  * @idx: an index
1049  *
1050  * Remove the memory block in @b at index @i.
1051  */
1052 void
1053 gst_buffer_remove_memory (GstBuffer * buffer, guint idx)
1054 {
1055   gst_buffer_remove_memory_range (buffer, idx, 1);
1056 }
1057
1058 /**
1059  * gst_buffer_remove_all_memory:
1060  * @buffer: a #GstBuffer.
1061  *
1062  * Remove all the memory blocks in @buffer.
1063  */
1064 void
1065 gst_buffer_remove_all_memory (GstBuffer * buffer)
1066 {
1067   gst_buffer_remove_memory_range (buffer, 0, -1);
1068 }
1069
1070 /**
1071  * gst_buffer_remove_memory_range:
1072  * @buffer: a #GstBuffer.
1073  * @idx: an index
1074  * @length: a length
1075  *
1076  * Remove @length memory blocks in @buffer starting from @idx.
1077  *
1078  * @length can be -1, in which case all memory starting from @idx is removed.
1079  */
1080 void
1081 gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, gint length)
1082 {
1083   guint len;
1084
1085   g_return_if_fail (GST_IS_BUFFER (buffer));
1086   g_return_if_fail (gst_buffer_is_writable (buffer));
1087
1088   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1089
1090   len = GST_BUFFER_MEM_LEN (buffer);
1091   g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1092       (length == -1 && idx < len) || length + idx <= len);
1093
1094   if (length == -1)
1095     length = len - idx;
1096
1097   _replace_memory (buffer, len, idx, length, NULL);
1098 }
1099
1100 /**
1101  * gst_buffer_find_memory:
1102  * @buffer: a #GstBuffer.
1103  * @offset: an offset
1104  * @size: a size
1105  * @idx: (out): pointer to index
1106  * @length: (out): pointer to length
1107  * @skip: (out): pointer to skip
1108  *
1109  * Find the memory blocks that span @size bytes starting from @offset
1110  * in @buffer.
1111  *
1112  * When this function returns %TRUE, @idx will contain the index of the first
1113  * memory bock where the byte for @offset can be found and @length contains the
1114  * number of memory blocks containing the @size remaining bytes. @skip contains
1115  * the number of bytes to skip in the memory bock at @idx to get to the byte
1116  * for @offset.
1117  *
1118  * @size can be -1 to get all the memory blocks after @idx.
1119  *
1120  * Returns: %TRUE when @size bytes starting from @offset could be found in
1121  * @buffer and @idx, @length and @skip will be filled.
1122  */
1123 gboolean
1124 gst_buffer_find_memory (GstBuffer * buffer, gsize offset, gsize size,
1125     guint * idx, guint * length, gsize * skip)
1126 {
1127   guint i, len, found;
1128
1129   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1130   g_return_val_if_fail (idx != NULL, FALSE);
1131   g_return_val_if_fail (length != NULL, FALSE);
1132   g_return_val_if_fail (skip != NULL, FALSE);
1133
1134   len = GST_BUFFER_MEM_LEN (buffer);
1135
1136   found = 0;
1137   for (i = 0; i < len; i++) {
1138     GstMemory *mem;
1139     gsize s;
1140
1141     mem = GST_BUFFER_MEM_PTR (buffer, i);
1142     s = gst_memory_get_sizes (mem, NULL, NULL);
1143
1144     if (s <= offset) {
1145       /* block before offset, or empty block, skip */
1146       offset -= s;
1147     } else {
1148       /* block after offset */
1149       if (found == 0) {
1150         /* first block, remember index and offset */
1151         *idx = i;
1152         *skip = offset;
1153         if (size == -1) {
1154           /* return remaining blocks */
1155           *length = len - i;
1156           return TRUE;
1157         }
1158         s -= offset;
1159         offset = 0;
1160       }
1161       /* count the amount of found bytes */
1162       found += s;
1163       if (found >= size) {
1164         /* we have enough bytes */
1165         *length = i - *idx + 1;
1166         return TRUE;
1167       }
1168     }
1169   }
1170   return FALSE;
1171 }
1172
1173 /**
1174  * gst_buffer_is_memory_range_writable:
1175  * @buffer: a #GstBuffer.
1176  * @idx: an index
1177  * @length: a length should not be 0
1178  *
1179  * Check if @length memory blocks in @buffer starting from @idx are writable.
1180  *
1181  * @length can be -1 to check all the memory blocks after @idx.
1182  *
1183  * Note that this function does not check if @buffer is writable, use
1184  * gst_buffer_is_writable() to check that if needed.
1185  *
1186  * Returns: %TRUE if the memory range is writable
1187  *
1188  * Since: 1.4
1189  */
1190 gboolean
1191 gst_buffer_is_memory_range_writable (GstBuffer * buffer, guint idx, gint length)
1192 {
1193   guint i, len;
1194
1195   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1196
1197   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
1198
1199   len = GST_BUFFER_MEM_LEN (buffer);
1200   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1201       (length == -1 && idx < len) || (length > 0 && length + idx <= len),
1202       FALSE);
1203
1204   if (length == -1)
1205     len -= idx;
1206   else
1207     len = length;
1208
1209   for (i = 0; i < len; i++) {
1210     if (!gst_memory_is_writable (GST_BUFFER_MEM_PTR (buffer, i + idx)))
1211       return FALSE;
1212   }
1213   return TRUE;
1214 }
1215
1216 /**
1217  * gst_buffer_is_all_memory_writable:
1218  * @buffer: a #GstBuffer.
1219  *
1220  * Check if all memory blocks in @buffer are writable.
1221  *
1222  * Note that this function does not check if @buffer is writable, use
1223  * gst_buffer_is_writable() to check that if needed.
1224  *
1225  * Returns: %TRUE if all memory blocks in @buffer are writable
1226  *
1227  * Since: 1.4
1228  */
1229 gboolean
1230 gst_buffer_is_all_memory_writable (GstBuffer * buffer)
1231 {
1232   return gst_buffer_is_memory_range_writable (buffer, 0, -1);
1233 }
1234
1235 /**
1236  * gst_buffer_get_sizes:
1237  * @buffer: a #GstBuffer.
1238  * @offset: (out): a pointer to the offset
1239  * @maxsize: (out): a pointer to the maxsize
1240  *
1241  * Get the total size of the memory blocks in @b.
1242  *
1243  * When not %NULL, @offset will contain the offset of the data in the
1244  * first memory block in @buffer and @maxsize will contain the sum of
1245  * the size and @offset and the amount of extra padding on the last
1246  * memory block.  @offset and @maxsize can be used to resize the
1247  * buffer memory blocks with gst_buffer_resize().
1248  *
1249  * Returns: total size of the memory blocks in @buffer.
1250  */
1251 gsize
1252 gst_buffer_get_sizes (GstBuffer * buffer, gsize * offset, gsize * maxsize)
1253 {
1254   return gst_buffer_get_sizes_range (buffer, 0, -1, offset, maxsize);
1255 }
1256
1257 /**
1258  * gst_buffer_get_size:
1259  * @buffer: a #GstBuffer.
1260  *
1261  * Get the total size of the memory blocks in @buffer.
1262  *
1263  * Returns: total size of the memory blocks in @buffer.
1264  */
1265 gsize
1266 gst_buffer_get_size (GstBuffer * buffer)
1267 {
1268   return gst_buffer_get_sizes_range (buffer, 0, -1, NULL, NULL);
1269 }
1270
1271 /**
1272  * gst_buffer_get_sizes_range:
1273  * @buffer: a #GstBuffer.
1274  * @idx: an index
1275  * @length: a length
1276  * @offset: (out): a pointer to the offset
1277  * @maxsize: (out): a pointer to the maxsize
1278  *
1279  * Get the total size of @length memory blocks stating from @idx in @buffer.
1280  *
1281  * When not %NULL, @offset will contain the offset of the data in the
1282  * memory block in @buffer at @idx and @maxsize will contain the sum of the size
1283  * and @offset and the amount of extra padding on the memory block at @idx +
1284  * @length -1.
1285  * @offset and @maxsize can be used to resize the buffer memory blocks with
1286  * gst_buffer_resize_range().
1287  *
1288  * Returns: total size of @length memory blocks starting at @idx in @buffer.
1289  */
1290 gsize
1291 gst_buffer_get_sizes_range (GstBuffer * buffer, guint idx, gint length,
1292     gsize * offset, gsize * maxsize)
1293 {
1294   guint len;
1295   gsize size;
1296   GstMemory *mem;
1297
1298   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1299   len = GST_BUFFER_MEM_LEN (buffer);
1300   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1301       (length == -1 && idx < len) || (length + idx <= len), 0);
1302
1303   if (length == -1)
1304     length = len - idx;
1305
1306   if (G_LIKELY (length == 1)) {
1307     /* common case */
1308     mem = GST_BUFFER_MEM_PTR (buffer, idx);
1309     size = gst_memory_get_sizes (mem, offset, maxsize);
1310   } else {
1311     guint i, end;
1312     gsize extra, offs;
1313
1314     end = idx + length;
1315     size = offs = extra = 0;
1316     for (i = idx; i < end; i++) {
1317       gsize s, o, ms;
1318
1319       mem = GST_BUFFER_MEM_PTR (buffer, i);
1320       s = gst_memory_get_sizes (mem, &o, &ms);
1321
1322       if (s) {
1323         if (size == 0)
1324           /* first size, take accumulated data before as the offset */
1325           offs = extra + o;
1326         /* add sizes */
1327         size += s;
1328         /* save the amount of data after this block */
1329         extra = ms - (o + s);
1330       } else {
1331         /* empty block, add as extra */
1332         extra += ms;
1333       }
1334     }
1335     if (offset)
1336       *offset = offs;
1337     if (maxsize)
1338       *maxsize = offs + size + extra;
1339   }
1340   return size;
1341 }
1342
1343 /**
1344  * gst_buffer_resize:
1345  * @buffer: a #GstBuffer.
1346  * @offset: the offset adjustment
1347  * @size: the new size or -1 to just adjust the offset
1348  *
1349  * Set the offset and total size of the memory blocks in @buffer.
1350  */
1351 void
1352 gst_buffer_resize (GstBuffer * buffer, gssize offset, gssize size)
1353 {
1354   gst_buffer_resize_range (buffer, 0, -1, offset, size);
1355 }
1356
1357 /**
1358  * gst_buffer_set_size:
1359  * @buffer: a #GstBuffer.
1360  * @size: the new size
1361  *
1362  * Set the total size of the memory blocks in @buffer.
1363  */
1364 void
1365 gst_buffer_set_size (GstBuffer * buffer, gssize size)
1366 {
1367   gst_buffer_resize_range (buffer, 0, -1, 0, size);
1368 }
1369
1370 /**
1371  * gst_buffer_resize_range:
1372  * @buffer: a #GstBuffer.
1373  * @idx: an index
1374  * @length: a length
1375  * @offset: the offset adjustment
1376  * @size: the new size or -1 to just adjust the offset
1377  *
1378  * Set the total size of the @length memory blocks starting at @idx in
1379  * @buffer
1380  *
1381  * Returns: %TRUE if resizing succeeded, %FALSE otherwise.
1382  */
1383 gboolean
1384 gst_buffer_resize_range (GstBuffer * buffer, guint idx, gint length,
1385     gssize offset, gssize size)
1386 {
1387   guint i, len, end;
1388   gsize bsize, bufsize, bufoffs, bufmax;
1389
1390   g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
1391   g_return_val_if_fail (size >= -1, FALSE);
1392
1393   len = GST_BUFFER_MEM_LEN (buffer);
1394   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1395       (length == -1 && idx < len) || (length + idx <= len), FALSE);
1396
1397   if (length == -1)
1398     length = len - idx;
1399
1400   bufsize = gst_buffer_get_sizes_range (buffer, idx, length, &bufoffs, &bufmax);
1401
1402   GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
1403       " size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
1404       G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
1405
1406   /* we can't go back further than the current offset or past the end of the
1407    * buffer */
1408   g_return_val_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
1409           && bufoffs + offset <= bufmax), FALSE);
1410   if (size == -1) {
1411     g_return_val_if_fail (bufsize >= offset, FALSE);
1412     size = bufsize - offset;
1413   }
1414   g_return_val_if_fail (bufmax >= bufoffs + offset + size, FALSE);
1415
1416   /* no change */
1417   if (offset == 0 && size == bufsize)
1418     return TRUE;
1419
1420   end = idx + length;
1421   /* copy and trim */
1422   for (i = idx; i < end; i++) {
1423     GstMemory *mem;
1424     gsize left, noffs;
1425
1426     mem = GST_BUFFER_MEM_PTR (buffer, i);
1427     bsize = gst_memory_get_sizes (mem, NULL, NULL);
1428
1429     noffs = 0;
1430     /* last buffer always gets resized to the remaining size */
1431     if (i + 1 == end)
1432       left = size;
1433     /* shrink buffers before the offset */
1434     else if ((gssize) bsize <= offset) {
1435       left = 0;
1436       noffs = offset - bsize;
1437       offset = 0;
1438     }
1439     /* clip other buffers */
1440     else
1441       left = MIN (bsize - offset, size);
1442
1443     if (offset != 0 || left != bsize) {
1444       if (gst_memory_is_writable (mem)) {
1445         gst_memory_resize (mem, offset, left);
1446       } else {
1447         GstMemory *newmem = NULL;
1448
1449         if (!GST_MEMORY_IS_NO_SHARE (mem))
1450           newmem = gst_memory_share (mem, offset, left);
1451
1452         if (!newmem)
1453           newmem = gst_memory_copy (mem, offset, left);
1454
1455         if (newmem == NULL)
1456           return FALSE;
1457
1458         gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
1459         GST_BUFFER_MEM_PTR (buffer, i) = newmem;
1460         gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
1461         gst_memory_unref (mem);
1462
1463         GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_TAG_MEMORY);
1464       }
1465     }
1466
1467     offset = noffs;
1468     size -= left;
1469   }
1470
1471   return TRUE;
1472 }
1473
1474 /**
1475  * gst_buffer_map:
1476  * @buffer: a #GstBuffer.
1477  * @info: (out): info about the mapping
1478  * @flags: flags for the mapping
1479  *
1480  * This function fills @info with the #GstMapInfo of all merged memory
1481  * blocks in @buffer.
1482  *
1483  * @flags describe the desired access of the memory. When @flags is
1484  * #GST_MAP_WRITE, @buffer should be writable (as returned from
1485  * gst_buffer_is_writable()).
1486  *
1487  * When @buffer is writable but the memory isn't, a writable copy will
1488  * automatically be created and returned. The readonly copy of the
1489  * buffer memory will then also be replaced with this writable copy.
1490  *
1491  * The memory in @info should be unmapped with gst_buffer_unmap() after
1492  * usage.
1493  *
1494  * Returns: %TRUE if the map succeeded and @info contains valid data.
1495  */
1496 gboolean
1497 gst_buffer_map (GstBuffer * buffer, GstMapInfo * info, GstMapFlags flags)
1498 {
1499   return gst_buffer_map_range (buffer, 0, -1, info, flags);
1500 }
1501
1502 /**
1503  * gst_buffer_map_range:
1504  * @buffer: a #GstBuffer.
1505  * @idx: an index
1506  * @length: a length
1507  * @info: (out): info about the mapping
1508  * @flags: flags for the mapping
1509  *
1510  * This function fills @info with the #GstMapInfo of @length merged memory blocks
1511  * starting at @idx in @buffer. When @length is -1, all memory blocks starting
1512  * from @idx are merged and mapped.
1513  *
1514  * @flags describe the desired access of the memory. When @flags is
1515  * #GST_MAP_WRITE, @buffer should be writable (as returned from
1516  * gst_buffer_is_writable()).
1517  *
1518  * When @buffer is writable but the memory isn't, a writable copy will
1519  * automatically be created and returned. The readonly copy of the buffer memory
1520  * will then also be replaced with this writable copy.
1521  *
1522  * The memory in @info should be unmapped with gst_buffer_unmap() after usage.
1523  *
1524  * Returns: %TRUE if the map succeeded and @info contains valid
1525  * data.
1526  */
1527 gboolean
1528 gst_buffer_map_range (GstBuffer * buffer, guint idx, gint length,
1529     GstMapInfo * info, GstMapFlags flags)
1530 {
1531   GstMemory *mem, *nmem;
1532   gboolean write, writable;
1533   gsize len;
1534
1535   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1536   g_return_val_if_fail (info != NULL, FALSE);
1537   len = GST_BUFFER_MEM_LEN (buffer);
1538   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1539       (length == -1 && idx < len) || (length > 0
1540           && length + idx <= len), FALSE);
1541
1542   GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %d, flags %04x",
1543       buffer, idx, length, flags);
1544
1545   write = (flags & GST_MAP_WRITE) != 0;
1546   writable = gst_buffer_is_writable (buffer);
1547
1548   /* check if we can write when asked for write access */
1549   if (G_UNLIKELY (write && !writable))
1550     goto not_writable;
1551
1552   if (length == -1)
1553     length = len - idx;
1554
1555   mem = _get_merged_memory (buffer, idx, length);
1556   if (G_UNLIKELY (mem == NULL))
1557     goto no_memory;
1558
1559   /* now try to map */
1560   nmem = gst_memory_make_mapped (mem, info, flags);
1561   if (G_UNLIKELY (nmem == NULL))
1562     goto cannot_map;
1563
1564   /* if we merged or when the map returned a different memory, we try to replace
1565    * the memory in the buffer */
1566   if (G_UNLIKELY (length > 1 || nmem != mem)) {
1567     /* if the buffer is writable, replace the memory */
1568     if (writable) {
1569       _replace_memory (buffer, len, idx, length, gst_memory_ref (nmem));
1570     } else {
1571       if (len > 1) {
1572         GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
1573             "temporary mapping for memory %p in buffer %p", nmem, buffer);
1574       }
1575     }
1576   }
1577   return TRUE;
1578
1579   /* ERROR */
1580 not_writable:
1581   {
1582     GST_WARNING_OBJECT (buffer, "write map requested on non-writable buffer");
1583     g_critical ("write map requested on non-writable buffer");
1584     memset (info, 0, sizeof (GstMapInfo));
1585     return FALSE;
1586   }
1587 no_memory:
1588   {
1589     /* empty buffer, we need to return NULL */
1590     GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
1591     memset (info, 0, sizeof (GstMapInfo));
1592     return TRUE;
1593   }
1594 cannot_map:
1595   {
1596     GST_DEBUG_OBJECT (buffer, "cannot map memory");
1597     memset (info, 0, sizeof (GstMapInfo));
1598     return FALSE;
1599   }
1600 }
1601
1602 /**
1603  * gst_buffer_unmap:
1604  * @buffer: a #GstBuffer.
1605  * @info: a #GstMapInfo
1606  *
1607  * Release the memory previously mapped with gst_buffer_map().
1608  */
1609 void
1610 gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
1611 {
1612   g_return_if_fail (GST_IS_BUFFER (buffer));
1613   g_return_if_fail (info != NULL);
1614
1615   /* we need to check for NULL, it is possible that we tried to map a buffer
1616    * without memory and we should be able to unmap that fine */
1617   if (G_LIKELY (info->memory)) {
1618     gst_memory_unmap (info->memory, info);
1619     gst_memory_unref (info->memory);
1620   }
1621 }
1622
1623 /**
1624  * gst_buffer_fill:
1625  * @buffer: a #GstBuffer.
1626  * @offset: the offset to fill
1627  * @src: (array length=size) (element-type guint8): the source address
1628  * @size: the size to fill
1629  *
1630  * Copy @size bytes from @src to @buffer at @offset.
1631  *
1632  * Returns: The amount of bytes copied. This value can be lower than @size
1633  *    when @buffer did not contain enough data.
1634  */
1635 gsize
1636 gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
1637     gsize size)
1638 {
1639   gsize i, len, left;
1640   const guint8 *ptr = src;
1641
1642   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1643   g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1644   g_return_val_if_fail (src != NULL || size == 0, 0);
1645
1646   GST_CAT_LOG (GST_CAT_BUFFER,
1647       "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1648       offset, size);
1649
1650   len = GST_BUFFER_MEM_LEN (buffer);
1651   left = size;
1652
1653   for (i = 0; i < len && left > 0; i++) {
1654     GstMapInfo info;
1655     gsize tocopy;
1656     GstMemory *mem;
1657
1658     mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1659     if (info.size > offset) {
1660       /* we have enough */
1661       tocopy = MIN (info.size - offset, left);
1662       memcpy ((guint8 *) info.data + offset, ptr, tocopy);
1663       left -= tocopy;
1664       ptr += tocopy;
1665       offset = 0;
1666     } else {
1667       /* offset past buffer, skip */
1668       offset -= info.size;
1669     }
1670     gst_memory_unmap (mem, &info);
1671   }
1672   return size - left;
1673 }
1674
1675 /**
1676  * gst_buffer_extract:
1677  * @buffer: a #GstBuffer.
1678  * @offset: the offset to extract
1679  * @dest: the destination address
1680  * @size: the size to extract
1681  *
1682  * Copy @size bytes starting from @offset in @buffer to @dest.
1683  *
1684  * Returns: The amount of bytes extracted. This value can be lower than @size
1685  *    when @buffer did not contain enough data.
1686  */
1687 gsize
1688 gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
1689 {
1690   gsize i, len, left;
1691   guint8 *ptr = dest;
1692
1693   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1694   g_return_val_if_fail (dest != NULL, 0);
1695
1696   GST_CAT_LOG (GST_CAT_BUFFER,
1697       "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1698       offset, size);
1699
1700   len = GST_BUFFER_MEM_LEN (buffer);
1701   left = size;
1702
1703   for (i = 0; i < len && left > 0; i++) {
1704     GstMapInfo info;
1705     gsize tocopy;
1706     GstMemory *mem;
1707
1708     mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1709     if (info.size > offset) {
1710       /* we have enough */
1711       tocopy = MIN (info.size - offset, left);
1712       memcpy (ptr, (guint8 *) info.data + offset, tocopy);
1713       left -= tocopy;
1714       ptr += tocopy;
1715       offset = 0;
1716     } else {
1717       /* offset past buffer, skip */
1718       offset -= info.size;
1719     }
1720     gst_memory_unmap (mem, &info);
1721   }
1722   return size - left;
1723 }
1724
1725 /**
1726  * gst_buffer_memcmp:
1727  * @buffer: a #GstBuffer.
1728  * @offset: the offset in @buffer
1729  * @mem: (array length=size) (element-type guint8): the memory to compare
1730  * @size: the size to compare
1731  *
1732  * Compare @size bytes starting from @offset in @buffer with the memory in @mem.
1733  *
1734  * Returns: 0 if the memory is equal.
1735  */
1736 gint
1737 gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
1738     gsize size)
1739 {
1740   gsize i, len;
1741   const guint8 *ptr = mem;
1742   gint res = 0;
1743
1744   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1745   g_return_val_if_fail (mem != NULL, 0);
1746
1747   GST_CAT_LOG (GST_CAT_BUFFER,
1748       "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1749       offset, size);
1750
1751   if (G_UNLIKELY (gst_buffer_get_size (buffer) < offset + size))
1752     return -1;
1753
1754   len = GST_BUFFER_MEM_LEN (buffer);
1755
1756   for (i = 0; i < len && size > 0 && res == 0; i++) {
1757     GstMapInfo info;
1758     gsize tocmp;
1759     GstMemory *mem;
1760
1761     mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1762     if (info.size > offset) {
1763       /* we have enough */
1764       tocmp = MIN (info.size - offset, size);
1765       res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
1766       size -= tocmp;
1767       ptr += tocmp;
1768       offset = 0;
1769     } else {
1770       /* offset past buffer, skip */
1771       offset -= info.size;
1772     }
1773     gst_memory_unmap (mem, &info);
1774   }
1775   return res;
1776 }
1777
1778 /**
1779  * gst_buffer_memset:
1780  * @buffer: a #GstBuffer.
1781  * @offset: the offset in @buffer
1782  * @val: the value to set
1783  * @size: the size to set
1784  *
1785  * Fill @buf with @size bytes with @val starting from @offset.
1786  *
1787  * Returns: The amount of bytes filled. This value can be lower than @size
1788  *    when @buffer did not contain enough data.
1789  */
1790 gsize
1791 gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
1792 {
1793   gsize i, len, left;
1794
1795   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1796   g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1797
1798   GST_CAT_LOG (GST_CAT_BUFFER,
1799       "buffer %p, offset %" G_GSIZE_FORMAT ", val %02x, size %" G_GSIZE_FORMAT,
1800       buffer, offset, val, size);
1801
1802   len = GST_BUFFER_MEM_LEN (buffer);
1803   left = size;
1804
1805   for (i = 0; i < len && left > 0; i++) {
1806     GstMapInfo info;
1807     gsize toset;
1808     GstMemory *mem;
1809
1810     mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1811     if (info.size > offset) {
1812       /* we have enough */
1813       toset = MIN (info.size - offset, left);
1814       memset ((guint8 *) info.data + offset, val, toset);
1815       left -= toset;
1816       offset = 0;
1817     } else {
1818       /* offset past buffer, skip */
1819       offset -= info.size;
1820     }
1821     gst_memory_unmap (mem, &info);
1822   }
1823   return size - left;
1824 }
1825
1826 /**
1827  * gst_buffer_copy_region:
1828  * @parent: a #GstBuffer.
1829  * @flags: the #GstBufferCopyFlags
1830  * @offset: the offset into parent #GstBuffer at which the new sub-buffer 
1831  *          begins.
1832  * @size: the size of the new #GstBuffer sub-buffer, in bytes.
1833  *
1834  * Creates a sub-buffer from @parent at @offset and @size.
1835  * This sub-buffer uses the actual memory space of the parent buffer.
1836  * This function will copy the offset and timestamp fields when the
1837  * offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and 
1838  * #GST_BUFFER_OFFSET_NONE.
1839  * If @offset equals 0 and @size equals the total size of @buffer, the
1840  * duration and offset end fields are also copied. If not they will be set
1841  * to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
1842  *
1843  * MT safe.
1844  *
1845  * Returns: (transfer full): the new #GstBuffer or %NULL if the arguments were
1846  *     invalid.
1847  */
1848 GstBuffer *
1849 gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
1850     gsize offset, gsize size)
1851 {
1852   GstBuffer *copy;
1853
1854   g_return_val_if_fail (buffer != NULL, NULL);
1855
1856   /* create the new buffer */
1857   copy = gst_buffer_new ();
1858
1859   GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
1860       "-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
1861
1862   if (!gst_buffer_copy_into (copy, buffer, flags, offset, size))
1863     gst_buffer_replace (&copy, NULL);
1864
1865   return copy;
1866 }
1867
1868 /**
1869  * gst_buffer_append:
1870  * @buf1: (transfer full): the first source #GstBuffer to append.
1871  * @buf2: (transfer full): the second source #GstBuffer to append.
1872  *
1873  * Append all the memory from @buf2 to @buf1. The result buffer will contain a
1874  * concatenation of the memory of @buf1 and @buf2.
1875  *
1876  * Returns: (transfer full): the new #GstBuffer that contains the memory
1877  *     of the two source buffers.
1878  */
1879 GstBuffer *
1880 gst_buffer_append (GstBuffer * buf1, GstBuffer * buf2)
1881 {
1882   return gst_buffer_append_region (buf1, buf2, 0, -1);
1883 }
1884
1885 /**
1886  * gst_buffer_append_region:
1887  * @buf1: (transfer full): the first source #GstBuffer to append.
1888  * @buf2: (transfer full): the second source #GstBuffer to append.
1889  * @offset: the offset in @buf2
1890  * @size: the size or -1 of @buf2
1891  *
1892  * Append @size bytes at @offset from @buf2 to @buf1. The result buffer will
1893  * contain a concatenation of the memory of @buf1 and the requested region of
1894  * @buf2.
1895  *
1896  * Returns: (transfer full): the new #GstBuffer that contains the memory
1897  *     of the two source buffers.
1898  */
1899 GstBuffer *
1900 gst_buffer_append_region (GstBuffer * buf1, GstBuffer * buf2, gssize offset,
1901     gssize size)
1902 {
1903   gsize i, len;
1904
1905   g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
1906   g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
1907
1908   buf1 = gst_buffer_make_writable (buf1);
1909   buf2 = gst_buffer_make_writable (buf2);
1910
1911   gst_buffer_resize (buf2, offset, size);
1912
1913   len = GST_BUFFER_MEM_LEN (buf2);
1914   for (i = 0; i < len; i++) {
1915     GstMemory *mem;
1916
1917     mem = GST_BUFFER_MEM_PTR (buf2, i);
1918     GST_BUFFER_MEM_PTR (buf2, i) = NULL;
1919     _memory_add (buf1, -1, mem, FALSE);
1920   }
1921
1922   GST_BUFFER_MEM_LEN (buf2) = 0;
1923   GST_BUFFER_FLAG_SET (buf2, GST_BUFFER_FLAG_TAG_MEMORY);
1924   gst_buffer_unref (buf2);
1925
1926   return buf1;
1927 }
1928
1929 /**
1930  * gst_buffer_get_meta:
1931  * @buffer: a #GstBuffer
1932  * @api: the #GType of an API
1933  *
1934  * Get the metadata for @api on buffer. When there is no such
1935  * metadata, %NULL is returned.
1936  *
1937  * Returns: (transfer none) (nullable): the metadata for @api on
1938  * @buffer.
1939  */
1940 GstMeta *
1941 gst_buffer_get_meta (GstBuffer * buffer, GType api)
1942 {
1943   GstMetaItem *item;
1944   GstMeta *result = NULL;
1945
1946   g_return_val_if_fail (buffer != NULL, NULL);
1947   g_return_val_if_fail (api != 0, NULL);
1948
1949   /* find GstMeta of the requested API */
1950   for (item = GST_BUFFER_META (buffer); item; item = item->next) {
1951     GstMeta *meta = &item->meta;
1952     if (meta->info->api == api) {
1953       result = meta;
1954       break;
1955     }
1956   }
1957   return result;
1958 }
1959
1960 /**
1961  * gst_buffer_add_meta:
1962  * @buffer: a #GstBuffer
1963  * @info: a #GstMetaInfo
1964  * @params: params for @info
1965  *
1966  * Add metadata for @info to @buffer using the parameters in @params.
1967  *
1968  * Returns: (transfer none): the metadata for the api in @info on @buffer.
1969  */
1970 GstMeta *
1971 gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
1972     gpointer params)
1973 {
1974   GstMetaItem *item;
1975   GstMeta *result = NULL;
1976   gsize size;
1977
1978   g_return_val_if_fail (buffer != NULL, NULL);
1979   g_return_val_if_fail (info != NULL, NULL);
1980   g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
1981
1982   /* create a new slice */
1983   size = ITEM_SIZE (info);
1984   item = g_slice_alloc (size);
1985   result = &item->meta;
1986   result->info = info;
1987   result->flags = GST_META_FLAG_NONE;
1988
1989   GST_CAT_DEBUG (GST_CAT_BUFFER,
1990       "alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
1991       g_type_name (info->type), info->size);
1992
1993   /* call the init_func when needed */
1994   if (info->init_func)
1995     if (!info->init_func (result, params, buffer))
1996       goto init_failed;
1997
1998   /* and add to the list of metadata */
1999   item->next = GST_BUFFER_META (buffer);
2000   GST_BUFFER_META (buffer) = item;
2001
2002   return result;
2003
2004 init_failed:
2005   {
2006     g_slice_free1 (size, item);
2007     return NULL;
2008   }
2009 }
2010
2011 /**
2012  * gst_buffer_remove_meta:
2013  * @buffer: a #GstBuffer
2014  * @meta: a #GstMeta
2015  *
2016  * Remove the metadata for @meta on @buffer.
2017  *
2018  * Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
2019  * metadata was on @buffer.
2020  */
2021 gboolean
2022 gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
2023 {
2024   GstMetaItem *walk, *prev;
2025
2026   g_return_val_if_fail (buffer != NULL, FALSE);
2027   g_return_val_if_fail (meta != NULL, FALSE);
2028   g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
2029   g_return_val_if_fail (!GST_META_FLAG_IS_SET (meta, GST_META_FLAG_LOCKED),
2030       FALSE);
2031
2032   /* find the metadata and delete */
2033   prev = GST_BUFFER_META (buffer);
2034   for (walk = prev; walk; walk = walk->next) {
2035     GstMeta *m = &walk->meta;
2036     if (m == meta) {
2037       const GstMetaInfo *info = meta->info;
2038
2039       /* remove from list */
2040       if (GST_BUFFER_META (buffer) == walk)
2041         GST_BUFFER_META (buffer) = walk->next;
2042       else
2043         prev->next = walk->next;
2044       /* call free_func if any */
2045       if (info->free_func)
2046         info->free_func (m, buffer);
2047
2048       /* and free the slice */
2049       g_slice_free1 (ITEM_SIZE (info), walk);
2050       break;
2051     }
2052     prev = walk;
2053   }
2054   return walk != NULL;
2055 }
2056
2057 /**
2058  * gst_buffer_iterate_meta:
2059  * @buffer: a #GstBuffer
2060  * @state: an opaque state pointer
2061  *
2062  * Retrieve the next #GstMeta after @current. If @state points
2063  * to %NULL, the first metadata is returned.
2064  *
2065  * @state will be updated with an opaque state pointer
2066  *
2067  * Returns: (transfer none) (nullable): The next #GstMeta or %NULL
2068  * when there are no more items.
2069  */
2070 GstMeta *
2071 gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
2072 {
2073   GstMetaItem **meta;
2074
2075   g_return_val_if_fail (buffer != NULL, NULL);
2076   g_return_val_if_fail (state != NULL, NULL);
2077
2078   meta = (GstMetaItem **) state;
2079   if (*meta == NULL)
2080     /* state NULL, move to first item */
2081     *meta = GST_BUFFER_META (buffer);
2082   else
2083     /* state !NULL, move to next item in list */
2084     *meta = (*meta)->next;
2085
2086   if (*meta)
2087     return &(*meta)->meta;
2088   else
2089     return NULL;
2090 }
2091
2092 /**
2093  * gst_buffer_foreach_meta:
2094  * @buffer: a #GstBuffer
2095  * @func: (scope call): a #GstBufferForeachMetaFunc to call
2096  * @user_data: (closure): user data passed to @func
2097  *
2098  * Call @func with @user_data for each meta in @buffer.
2099  *
2100  * @func can modify the passed meta pointer or its contents. The return value
2101  * of @func define if this function returns or if the remaining metadata items
2102  * in the buffer should be skipped.
2103  *
2104  * Returns: %FALSE when @func returned %FALSE for one of the metadata.
2105  */
2106 gboolean
2107 gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
2108     gpointer user_data)
2109 {
2110   GstMetaItem *walk, *prev, *next;
2111   gboolean res = TRUE;
2112
2113   g_return_val_if_fail (buffer != NULL, FALSE);
2114   g_return_val_if_fail (func != NULL, FALSE);
2115
2116   /* find the metadata and delete */
2117   prev = GST_BUFFER_META (buffer);
2118   for (walk = prev; walk; walk = next) {
2119     GstMeta *m, *new;
2120
2121     m = new = &walk->meta;
2122     next = walk->next;
2123
2124     res = func (buffer, &new, user_data);
2125
2126     if (new == NULL) {
2127       const GstMetaInfo *info = m->info;
2128
2129       GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
2130           g_type_name (info->type));
2131
2132       g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
2133       g_return_val_if_fail (!GST_META_FLAG_IS_SET (m, GST_META_FLAG_LOCKED),
2134           FALSE);
2135
2136       /* remove from list */
2137       if (GST_BUFFER_META (buffer) == walk)
2138         GST_BUFFER_META (buffer) = next;
2139       else
2140         prev->next = next;
2141
2142       /* call free_func if any */
2143       if (info->free_func)
2144         info->free_func (m, buffer);
2145
2146       /* and free the slice */
2147       g_slice_free1 (ITEM_SIZE (info), walk);
2148     }
2149     if (!res)
2150       break;
2151   }
2152   return res;
2153 }
2154
2155 /**
2156  * gst_buffer_extract_dup:
2157  * @buffer: a #GstBuffer
2158  * @offset: the offset to extract
2159  * @size: the size to extract
2160  * @dest: (array length=dest_size) (element-type guint8) (out): A pointer where
2161  *  the destination array will be written.
2162  * @dest_size: (out): A location where the size of @dest can be written
2163  *
2164  * Extracts a copy of at most @size bytes the data at @offset into a #GBytes.
2165  * @dest must be freed using g_free() when done.
2166  *
2167  * Since: 1.0.10
2168  */
2169
2170 void
2171 gst_buffer_extract_dup (GstBuffer * buffer, gsize offset, gsize size,
2172     gpointer * dest, gsize * dest_size)
2173 {
2174   gsize real_size;
2175
2176   real_size = gst_buffer_get_size (buffer);
2177
2178   *dest = g_malloc (MIN (real_size - offset, size));
2179
2180   *dest_size = gst_buffer_extract (buffer, offset, *dest, size);
2181 }