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