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