Merge remote-tracking branch 'origin/0.10'
[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., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, 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  * <example>
37  * <title>Creating a buffer for a video frame</title>
38  *   <programlisting>
39  *   GstBuffer *buffer;
40  *   GstMemory *memory;
41  *   gint size, width, height, bpp;
42  *   ...
43  *   size = width * height * bpp;
44  *   buffer = gst_buffer_new ();
45  *   memory = gst_allocator_alloc (NULL, size, NULL);
46  *   gst_buffer_insert_memory (buffer, -1, memory);
47  *   ...
48  *   </programlisting>
49  * </example>
50  *
51  * Alternatively, use gst_buffer_new_allocate()
52  * to create a buffer with preallocated data of a given size.
53  *
54  * Buffers can contain a list of #GstMemory objects. You can retrieve how many
55  * memory objects with gst_buffer_n_memory() and you can get a pointer
56  * to memory with gst_buffer_peek_memory()
57  *
58  * A buffer will usually have timestamps, and a duration, but neither of these
59  * are guaranteed (they may be set to #GST_CLOCK_TIME_NONE). Whenever a
60  * meaningful value can be given for these, they should be set. The timestamps
61  * and duration are measured in nanoseconds (they are #GstClockTime values).
62  *
63  * The buffer DTS refers to the timestamp when the buffer should be decoded and
64  * is usually monotonically increasing. The buffer PTS refers to the timestamp when
65  * the buffer content should be presented to the user and is not always
66  * monotonically increasing.
67  *
68  * A buffer can also have one or both of a start and an end offset. These are
69  * media-type specific. For video buffers, the start offset will generally be
70  * the frame number. For audio buffers, it will be the number of samples
71  * produced so far. For compressed data, it could be the byte offset in a
72  * source or destination file. Likewise, the end offset will be the offset of
73  * the end of the buffer. These can only be meaningfully interpreted if you
74  * know the media type of the buffer (the preceeding CAPS event). Either or both
75  * can be set to #GST_BUFFER_OFFSET_NONE.
76  *
77  * gst_buffer_ref() is used to increase the refcount of a buffer. This must be
78  * done when you want to keep a handle to the buffer after pushing it to the
79  * next element. The buffer refcount determines the writability of the buffer, a
80  * buffer is only writable when the refcount is exactly 1, i.e. when the caller
81  * has the only reference to the buffer.
82  *
83  * To efficiently create a smaller buffer out of an existing one, you can
84  * use gst_buffer_copy_region(). This method tries to share the memory objects
85  * between the two buffers.
86  *
87  * If a plug-in wants to modify the buffer data or metadata in-place, it should
88  * first obtain a buffer that is safe to modify by using
89  * gst_buffer_make_writable().  This function is optimized so that a copy will
90  * only be made when it is necessary.
91  *
92  * Several flags of the buffer can be set and unset with the
93  * GST_BUFFER_FLAG_SET() and GST_BUFFER_FLAG_UNSET() macros. Use
94  * GST_BUFFER_FLAG_IS_SET() to test if a certain #GstBufferFlag is set.
95  *
96  * Buffers can be efficiently merged into a larger buffer with
97  * gst_buffer_append(). Copying of memory will only be done when absolutely
98  * needed.
99  *
100  * Arbitrary extra metadata can be set on a buffer with gst_buffer_add_meta().
101  * Metadata can be retrieved with gst_buffer_get_meta(). See also #GstMeta
102  *
103  * An element should either unref the buffer or push it out on a src pad
104  * using gst_pad_push() (see #GstPad).
105  *
106  * Buffers are usually freed by unreffing them with gst_buffer_unref(). When
107  * the refcount drops to 0, any memory and metadata pointed to by the buffer is
108  * unreffed as well. Buffers allocated from a #GstBufferPool will be returned to
109  * the pool when the refcount drops to 0.
110  *
111  * Last reviewed on 2012-03-28 (0.11.3)
112  */
113 #include "gst_private.h"
114
115 #ifdef HAVE_UNISTD_H
116 #include <unistd.h>
117 #endif
118 #ifdef HAVE_STDLIB_H
119 #include <stdlib.h>
120 #endif
121
122 #include "gstbuffer.h"
123 #include "gstbufferpool.h"
124 #include "gstinfo.h"
125 #include "gstutils.h"
126 #include "gstminiobject.h"
127 #include "gstversion.h"
128
129 GType _gst_buffer_type = 0;
130
131 typedef struct _GstMetaItem GstMetaItem;
132
133 struct _GstMetaItem
134 {
135   GstMetaItem *next;
136   GstMeta meta;
137 };
138 #define ITEM_SIZE(info) ((info)->size + sizeof (GstMetaItem))
139
140 #define GST_BUFFER_MEM_MAX         16
141
142 #define GST_BUFFER_MEM_LEN(b)      (((GstBufferImpl *)(b))->len)
143 #define GST_BUFFER_MEM_ARRAY(b)    (((GstBufferImpl *)(b))->mem)
144 #define GST_BUFFER_MEM_PTR(b,i)    (((GstBufferImpl *)(b))->mem[i])
145 #define GST_BUFFER_BUFMEM(b)       (((GstBufferImpl *)(b))->bufmem)
146 #define GST_BUFFER_META(b)         (((GstBufferImpl *)(b))->item)
147
148 typedef struct
149 {
150   GstBuffer buffer;
151
152   /* the memory blocks */
153   guint len;
154   GstMemory *mem[GST_BUFFER_MEM_MAX];
155
156   /* memory of the buffer when allocated from 1 chunk */
157   GstMemory *bufmem;
158
159   /* FIXME, make metadata allocation more efficient by using part of the
160    * GstBufferImpl */
161   GstMetaItem *item;
162 } GstBufferImpl;
163
164
165 static gboolean
166 _is_span (GstMemory ** mem, gsize len, gsize * poffset, GstMemory ** parent)
167 {
168   GstMemory *mcur, *mprv;
169   gboolean have_offset = FALSE;
170   gsize i;
171
172   mcur = mprv = NULL;
173
174   for (i = 0; i < len; i++) {
175     if (mcur)
176       mprv = mcur;
177     mcur = mem[i];
178
179     if (mprv && mcur) {
180       gsize poffs;
181
182       /* check if memory is contiguous */
183       if (!gst_memory_is_span (mprv, mcur, &poffs))
184         return FALSE;
185
186       if (!have_offset) {
187         if (poffset)
188           *poffset = poffs;
189         if (parent)
190           *parent = mprv->parent;
191
192         have_offset = TRUE;
193       }
194     }
195   }
196   return have_offset;
197 }
198
199 static GstMemory *
200 _get_merged_memory (GstBuffer * buffer, guint idx, guint length)
201 {
202   GstMemory **mem, *result;
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_size (buffer);
215
216     if (G_UNLIKELY (_is_span (mem + idx, length, &poffset, &parent))) {
217
218       if (parent->flags & GST_MEMORY_FLAG_NO_SHARE) {
219         GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy for merge %p", parent);
220         result = gst_memory_copy (parent, poffset, size);
221       } else {
222         result = gst_memory_share (parent, poffset, size);
223       }
224     } else {
225       gsize i, tocopy, left;
226       GstMapInfo sinfo, dinfo;
227       guint8 *ptr;
228
229       result = gst_allocator_alloc (NULL, size, NULL);
230       gst_memory_map (result, &dinfo, GST_MAP_WRITE);
231
232       ptr = dinfo.data;
233       left = size;
234
235       for (i = idx; i < length && left > 0; i++) {
236         gst_memory_map (mem[i], &sinfo, GST_MAP_READ);
237         tocopy = MIN (sinfo.size, left);
238         GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
239             "memcpy for merge %p from memory %p", 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   GST_LOG ("buffer %p replace %u-%" G_GSIZE_FORMAT " with memory %p", buffer,
259       idx, end, mem);
260
261   /* unref old memory */
262   for (i = idx; i < end; i++)
263     gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
264
265   if (mem != NULL) {
266     /* replace with single memory */
267     GST_BUFFER_MEM_PTR (buffer, idx) = mem;
268     idx++;
269     length--;
270   }
271
272   if (end < len) {
273     g_memmove (&GST_BUFFER_MEM_PTR (buffer, idx),
274         &GST_BUFFER_MEM_PTR (buffer, end), (len - end) * sizeof (gpointer));
275   }
276   GST_BUFFER_MEM_LEN (buffer) = len - length;
277 }
278
279 static inline void
280 _memory_add (GstBuffer * buffer, guint idx, GstMemory * mem)
281 {
282   guint i, len = GST_BUFFER_MEM_LEN (buffer);
283
284   if (G_UNLIKELY (len >= GST_BUFFER_MEM_MAX)) {
285     /* too many buffer, span them. */
286     /* FIXME, there is room for improvement here: We could only try to merge
287      * 2 buffers to make some room. If we can't efficiently merge 2 buffers we
288      * could try to only merge the two smallest buffers to avoid memcpy, etc. */
289     GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "memory array overflow in buffer %p",
290         buffer);
291     _replace_memory (buffer, len, 0, len, _get_merged_memory (buffer, 0, len));
292     /* we now have 1 single spanned buffer */
293     len = 1;
294   }
295
296   if (idx == -1)
297     idx = len;
298
299   for (i = len; i > idx; i--) {
300     /* move buffers to insert, FIXME, we need to insert first and then merge */
301     GST_BUFFER_MEM_PTR (buffer, i) = GST_BUFFER_MEM_PTR (buffer, i - 1);
302   }
303   /* and insert the new buffer */
304   GST_BUFFER_MEM_PTR (buffer, idx) = mem;
305   GST_BUFFER_MEM_LEN (buffer) = len + 1;
306 }
307
308 GST_DEFINE_MINI_OBJECT_TYPE (GstBuffer, gst_buffer);
309
310 void
311 _priv_gst_buffer_initialize (void)
312 {
313   _gst_buffer_type = gst_buffer_get_type ();
314 }
315
316 /**
317  * gst_buffer_copy_into:
318  * @dest: a destination #GstBuffer
319  * @src: a source #GstBuffer
320  * @flags: flags indicating what metadata fields should be copied.
321  * @offset: offset to copy from
322  * @size: total size to copy. If -1, all data is copied.
323  *
324  * Copies the information from @src into @dest.
325  *
326  * If @dest already contains memory and @flags contains GST_BUFFER_COPY_MEMORY,
327  * the memory from @src will be appended to @dest.
328  *
329  * @flags indicate which fields will be copied.
330  */
331 void
332 gst_buffer_copy_into (GstBuffer * dest, GstBuffer * src,
333     GstBufferCopyFlags flags, gsize offset, gsize size)
334 {
335   GstMetaItem *walk;
336   gsize bufsize;
337   gboolean region = FALSE;
338
339   g_return_if_fail (dest != NULL);
340   g_return_if_fail (src != NULL);
341
342   /* nothing to copy if the buffers are the same */
343   if (G_UNLIKELY (dest == src))
344     return;
345
346   g_return_if_fail (gst_buffer_is_writable (dest));
347
348   bufsize = gst_buffer_get_size (src);
349   g_return_if_fail (bufsize >= offset);
350   if (offset > 0)
351     region = TRUE;
352   if (size == -1)
353     size = bufsize - offset;
354   if (size < bufsize)
355     region = TRUE;
356   g_return_if_fail (bufsize >= offset + size);
357
358   GST_CAT_LOG (GST_CAT_BUFFER, "copy %p to %p, offset %" G_GSIZE_FORMAT
359       "-%" G_GSIZE_FORMAT "/%" G_GSIZE_FORMAT, src, dest, offset, size,
360       bufsize);
361
362   if (flags & GST_BUFFER_COPY_FLAGS) {
363     /* copy flags */
364     GST_MINI_OBJECT_FLAGS (dest) = GST_MINI_OBJECT_FLAGS (src);
365   }
366
367   if (flags & GST_BUFFER_COPY_TIMESTAMPS) {
368     if (offset == 0) {
369       GST_BUFFER_PTS (dest) = GST_BUFFER_PTS (src);
370       GST_BUFFER_DTS (dest) = GST_BUFFER_DTS (src);
371       GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET (src);
372       if (size == bufsize) {
373         GST_BUFFER_DURATION (dest) = GST_BUFFER_DURATION (src);
374         GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_END (src);
375       }
376     } else {
377       GST_BUFFER_PTS (dest) = GST_CLOCK_TIME_NONE;
378       GST_BUFFER_DTS (dest) = GST_CLOCK_TIME_NONE;
379       GST_BUFFER_DURATION (dest) = GST_CLOCK_TIME_NONE;
380       GST_BUFFER_OFFSET (dest) = GST_BUFFER_OFFSET_NONE;
381       GST_BUFFER_OFFSET_END (dest) = GST_BUFFER_OFFSET_NONE;
382     }
383   }
384
385   if (flags & GST_BUFFER_COPY_MEMORY) {
386     GstMemory *mem;
387     gsize skip, left, len, i, bsize;
388
389     len = GST_BUFFER_MEM_LEN (src);
390     left = size;
391     skip = offset;
392
393     /* copy and make regions of the memory */
394     for (i = 0; i < len && left > 0; i++) {
395       mem = GST_BUFFER_MEM_PTR (src, i);
396       bsize = gst_memory_get_sizes (mem, NULL, NULL);
397
398       if (bsize <= skip) {
399         /* don't copy buffer */
400         skip -= bsize;
401       } else {
402         gsize tocopy;
403
404         tocopy = MIN (bsize - skip, left);
405         if (mem->flags & GST_MEMORY_FLAG_NO_SHARE) {
406           /* no share, always copy then */
407           mem = gst_memory_copy (mem, skip, tocopy);
408           skip = 0;
409         } else if (tocopy < bsize) {
410           /* we need to clip something */
411           mem = gst_memory_share (mem, skip, tocopy);
412           skip = 0;
413         } else {
414           mem = gst_memory_ref (mem);
415         }
416         _memory_add (dest, -1, mem);
417         left -= tocopy;
418       }
419     }
420     if (flags & GST_BUFFER_COPY_MERGE) {
421       len = GST_BUFFER_MEM_LEN (dest);
422       _replace_memory (dest, len, 0, len, _get_merged_memory (dest, 0, len));
423     }
424   }
425
426   if (flags & GST_BUFFER_COPY_META) {
427     for (walk = GST_BUFFER_META (src); walk; walk = walk->next) {
428       GstMeta *meta = &walk->meta;
429       const GstMetaInfo *info = meta->info;
430
431       if (info->transform_func) {
432         GstMetaTransformCopy copy_data;
433
434         copy_data.region = region;
435         copy_data.offset = offset;
436         copy_data.size = size;
437
438         info->transform_func (dest, meta, src,
439             _gst_meta_transform_copy, &copy_data);
440       }
441     }
442   }
443 }
444
445 static GstBuffer *
446 _gst_buffer_copy (GstBuffer * buffer)
447 {
448   GstBuffer *copy;
449
450   g_return_val_if_fail (buffer != NULL, NULL);
451
452   /* create a fresh new buffer */
453   copy = gst_buffer_new ();
454
455   /* we simply copy everything from our parent */
456   gst_buffer_copy_into (copy, buffer, GST_BUFFER_COPY_ALL, 0, -1);
457
458   return copy;
459 }
460
461 /* the default dispose function revives the buffer and returns it to the
462  * pool when there is a pool */
463 static gboolean
464 _gst_buffer_dispose (GstBuffer * buffer)
465 {
466   GstBufferPool *pool;
467
468   /* no pool, do free */
469   if ((pool = buffer->pool) == NULL)
470     return TRUE;
471
472   /* keep the buffer alive */
473   gst_buffer_ref (buffer);
474   /* return the buffer to the pool */
475   GST_CAT_LOG (GST_CAT_BUFFER, "release %p to pool %p", buffer, pool);
476   gst_buffer_pool_release_buffer (pool, buffer);
477
478   return FALSE;
479 }
480
481 static void
482 _gst_buffer_free (GstBuffer * buffer)
483 {
484   GstMetaItem *walk, *next;
485   guint i, len;
486   gsize msize;
487
488   g_return_if_fail (buffer != NULL);
489
490   GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
491
492   /* free metadata */
493   for (walk = GST_BUFFER_META (buffer); walk; walk = next) {
494     GstMeta *meta = &walk->meta;
495     const GstMetaInfo *info = meta->info;
496
497     /* call free_func if any */
498     if (info->free_func)
499       info->free_func (meta, buffer);
500
501     next = walk->next;
502     /* and free the slice */
503     g_slice_free1 (ITEM_SIZE (info), walk);
504   }
505
506   /* get the size, when unreffing the memory, we could also unref the buffer
507    * itself */
508   msize = GST_MINI_OBJECT_SIZE (buffer);
509
510   /* free our memory */
511   len = GST_BUFFER_MEM_LEN (buffer);
512   for (i = 0; i < len; i++)
513     gst_memory_unref (GST_BUFFER_MEM_PTR (buffer, i));
514
515   /* we set msize to 0 when the buffer is part of the memory block */
516   if (msize)
517     g_slice_free1 (msize, buffer);
518   else
519     gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
520 }
521
522 static void
523 gst_buffer_init (GstBufferImpl * buffer, gsize size)
524 {
525   gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), _gst_buffer_type, size);
526
527   buffer->buffer.mini_object.copy =
528       (GstMiniObjectCopyFunction) _gst_buffer_copy;
529   buffer->buffer.mini_object.dispose =
530       (GstMiniObjectDisposeFunction) _gst_buffer_dispose;
531   buffer->buffer.mini_object.free =
532       (GstMiniObjectFreeFunction) _gst_buffer_free;
533
534   GST_BUFFER (buffer)->pool = NULL;
535   GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
536   GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
537   GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
538   GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
539   GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
540
541   GST_BUFFER_MEM_LEN (buffer) = 0;
542   GST_BUFFER_META (buffer) = NULL;
543 }
544
545 /**
546  * gst_buffer_new:
547  *
548  * Creates a newly allocated buffer without any data.
549  *
550  * MT safe.
551  *
552  * Returns: (transfer full): the new #GstBuffer.
553  */
554 GstBuffer *
555 gst_buffer_new (void)
556 {
557   GstBufferImpl *newbuf;
558
559   newbuf = g_slice_new (GstBufferImpl);
560   GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
561
562   gst_buffer_init (newbuf, sizeof (GstBufferImpl));
563
564   return GST_BUFFER_CAST (newbuf);
565 }
566
567 /**
568  * gst_buffer_new_allocate:
569  * @allocator: (transfer none) (allow-none): the #GstAllocator to use, or NULL to use the
570  *     default allocator
571  * @size: the size in bytes of the new buffer's data.
572  * @params: (transfer none) (allow-none): optional parameters
573  *
574  * Tries to create a newly allocated buffer with data of the given size and
575  * extra parameters from @allocator. If the requested amount of memory can't be
576  * allocated, NULL will be returned. The allocated buffer memory is not cleared.
577  *
578  * When @allocator is NULL, the default memory allocator will be used.
579  *
580  * Note that when @size == 0, the buffer will not have memory associated with it.
581  *
582  * MT safe.
583  *
584  * Returns: (transfer full): a new #GstBuffer, or NULL if the memory couldn't
585  *     be allocated.
586  */
587 GstBuffer *
588 gst_buffer_new_allocate (GstAllocator * allocator, gsize size,
589     GstAllocationParams * params)
590 {
591   GstBuffer *newbuf;
592   GstMemory *mem;
593 #if 0
594   guint8 *data;
595   gsize asize;
596 #endif
597
598 #if 1
599   if (size > 0) {
600     mem = gst_allocator_alloc (allocator, size, params);
601     if (G_UNLIKELY (mem == NULL))
602       goto no_memory;
603   } else {
604     mem = NULL;
605   }
606
607   newbuf = gst_buffer_new ();
608
609   if (mem != NULL)
610     _memory_add (newbuf, -1, mem);
611
612   GST_CAT_LOG (GST_CAT_BUFFER,
613       "new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
614       size, allocator);
615 #endif
616
617 #if 0
618   asize = sizeof (GstBufferImpl) + size;
619   data = g_slice_alloc (asize);
620   if (G_UNLIKELY (data == NULL))
621     goto no_memory;
622
623   newbuf = GST_BUFFER_CAST (data);
624
625   gst_buffer_init ((GstBufferImpl *) data, asize);
626   if (size > 0) {
627     mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
628         size, 0, size);
629     _memory_add (newbuf, -1, mem);
630   }
631 #endif
632
633 #if 0
634   /* allocate memory and buffer, it might be interesting to do this but there
635    * are many complications. We need to keep the memory mapped to access the
636    * buffer fields and the memory for the buffer might be just very slow. We
637    * also need to do some more magic to get the alignment right. */
638   asize = sizeof (GstBufferImpl) + size;
639   mem = gst_allocator_alloc (allocator, asize, align);
640   if (G_UNLIKELY (mem == NULL))
641     goto no_memory;
642
643   /* map the data part and init the buffer in it, set the buffer size to 0 so
644    * that a finalize won't free the buffer */
645   data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
646   gst_buffer_init ((GstBufferImpl *) data, 0);
647   gst_memory_unmap (mem);
648
649   /* strip off the buffer */
650   gst_memory_resize (mem, sizeof (GstBufferImpl), size);
651
652   newbuf = GST_BUFFER_CAST (data);
653   GST_BUFFER_BUFMEM (newbuf) = mem;
654
655   if (size > 0)
656     _memory_add (newbuf, -1, gst_memory_ref (mem));
657 #endif
658
659   return newbuf;
660
661   /* ERRORS */
662 no_memory:
663   {
664     GST_CAT_WARNING (GST_CAT_BUFFER,
665         "failed to allocate %" G_GSIZE_FORMAT " bytes", size);
666     return NULL;
667   }
668 }
669
670 /**
671  * gst_buffer_new_wrapped_full:
672  * @flags: #GstMemoryFlags
673  * @data: data to wrap
674  * @maxsize: allocated size of @data
675  * @offset: offset in @data
676  * @size: size of valid data
677  * @user_data: user_data
678  * @notify: called with @user_data when the memory is freed
679  *
680  * Allocate a new buffer that wraps the given memory. @data must point to
681  * @maxsize of memory, the wrapped buffer will have the region from @offset and
682  * @size visible.
683  *
684  * When the buffer is destroyed, @notify will be called with @user_data.
685  *
686  * The prefix/padding must be filled with 0 if @flags contains
687  * #GST_MEMORY_FLAG_ZERO_PREFIXED and #GST_MEMORY_FLAG_ZERO_PADDED respectively.
688  *
689  * Returns: (transfer full): a new #GstBuffer
690  */
691 GstBuffer *
692 gst_buffer_new_wrapped_full (GstMemoryFlags flags, gpointer data,
693     gsize maxsize, gsize offset, gsize size, gpointer user_data,
694     GDestroyNotify notify)
695 {
696   GstBuffer *newbuf;
697
698   newbuf = gst_buffer_new ();
699   gst_buffer_append_memory (newbuf,
700       gst_memory_new_wrapped (flags, data, maxsize, offset, size,
701           user_data, notify));
702
703   return newbuf;
704 }
705
706 /**
707  * gst_buffer_new_wrapped:
708  * @data: data to wrap
709  * @size: allocated size of @data
710  *
711  * Creates a new buffer that wraps the given @data. The memory will be freed
712  * with g_free and will be marked writable.
713  *
714  * MT safe.
715  *
716  * Returns: (transfer full): a new #GstBuffer
717  */
718 GstBuffer *
719 gst_buffer_new_wrapped (gpointer data, gsize size)
720 {
721   return gst_buffer_new_wrapped_full (0, data, size, 0, size, data, g_free);
722 }
723
724 /**
725  * gst_buffer_n_memory:
726  * @buffer: a #GstBuffer.
727  *
728  * Get the amount of memory blocks that this buffer has.
729  *
730  * Returns: (transfer full): the amount of memory block in this buffer.
731  */
732 guint
733 gst_buffer_n_memory (GstBuffer * buffer)
734 {
735   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
736
737   return GST_BUFFER_MEM_LEN (buffer);
738 }
739
740 /**
741  * gst_buffer_insert_memory:
742  * @buffer: a #GstBuffer.
743  * @idx: the index to add the memory at, or -1 to append it to the end
744  * @mem: (transfer full): a #GstMemory.
745  *
746  * Insert the memory block @mem to @buffer at @idx. This function takes ownership
747  * of @mem and thus doesn't increase its refcount.
748  */
749 void
750 gst_buffer_insert_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
751 {
752   g_return_if_fail (GST_IS_BUFFER (buffer));
753   g_return_if_fail (gst_buffer_is_writable (buffer));
754   g_return_if_fail (mem != NULL);
755   g_return_if_fail (idx == -1 ||
756       (idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
757
758   _memory_add (buffer, idx, mem);
759 }
760
761 static GstMemory *
762 _get_mapped (GstBuffer * buffer, guint idx, GstMapInfo * info,
763     GstMapFlags flags)
764 {
765   GstMemory *mem, *mapped;
766
767   mem = GST_BUFFER_MEM_PTR (buffer, idx);
768
769   mapped = gst_memory_make_mapped (mem, info, flags);
770   if (!mapped)
771     return NULL;
772
773   if (mapped != mem) {
774     GST_BUFFER_MEM_PTR (buffer, idx) = mapped;
775     gst_memory_unref (mem);
776     mem = mapped;
777   }
778   return mem;
779 }
780
781 /**
782  * gst_buffer_peek_memory:
783  * @buffer: a #GstBuffer.
784  * @idx: an index
785  *
786  * Get the memory block at @idx in @buffer. The memory block stays valid until
787  * the memory block in @buffer is removed, replaced or merged, typically with
788  * any call that modifies the memory in @buffer.
789  *
790  * Since this call does not influence the refcount of the memory,
791  * gst_memory_is_exclusive() can be used to check if @buffer is the sole owner
792  * of the returned memory.
793  *
794  * Returns: (transfer none): the #GstMemory at @idx.
795  */
796 GstMemory *
797 gst_buffer_peek_memory (GstBuffer * buffer, guint idx)
798 {
799   guint len;
800
801   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
802   len = GST_BUFFER_MEM_LEN (buffer);
803   g_return_val_if_fail (idx < len, NULL);
804
805   return GST_BUFFER_MEM_PTR (buffer, idx);
806 }
807
808 /**
809  * gst_buffer_get_memory_range:
810  * @buffer: a #GstBuffer.
811  * @idx: an index
812  * @length: a length
813  *
814  * Get @length memory blocks in @buffer starting at @idx. The memory blocks will
815  * be merged into one large #GstMemory.
816  *
817  * If @length is -1, all memory starting from @idx is merged.
818  *
819  * Returns: (transfer full): a #GstMemory that contains the merged data of @length
820  *    blocks starting at @idx. Use gst_memory_unref () after usage.
821  */
822 GstMemory *
823 gst_buffer_get_memory_range (GstBuffer * buffer, guint idx, gint length)
824 {
825   guint len;
826
827   GST_DEBUG ("idx %u, length %d", idx, length);
828
829   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
830   len = GST_BUFFER_MEM_LEN (buffer);
831   g_return_val_if_fail ((length == -1 && idx < len) ||
832       (length > 0 && length + idx <= len), NULL);
833
834   if (length == -1)
835     length = len - idx;
836
837   return _get_merged_memory (buffer, idx, length);
838 }
839
840 /**
841  * gst_buffer_replace_memory_range:
842  * @buffer: a #GstBuffer.
843  * @idx: an index
844  * @length: a length should not be 0
845  * @mem: (transfer full): a #GstMemory
846  *
847  * Replaces @length memory blocks in @buffer starting at @idx with @mem.
848  *
849  * If @length is -1, all memory starting from @idx will be removed and
850  * replaced with @mem.
851  *
852  * @buffer should be writable.
853  */
854 void
855 gst_buffer_replace_memory_range (GstBuffer * buffer, guint idx, gint length,
856     GstMemory * mem)
857 {
858   guint len;
859
860   g_return_if_fail (GST_IS_BUFFER (buffer));
861   g_return_if_fail (gst_buffer_is_writable (buffer));
862   len = GST_BUFFER_MEM_LEN (buffer);
863   g_return_if_fail ((length == -1 && idx < len) || (length > 0
864           && length + idx <= len));
865
866   if (length == -1)
867     length = len - idx;
868
869   _replace_memory (buffer, len, idx, length, mem);
870 }
871
872 /**
873  * gst_buffer_remove_memory_range:
874  * @buffer: a #GstBuffer.
875  * @idx: an index
876  * @length: a length
877  *
878  * Remove @length memory blocks in @buffer starting from @idx.
879  *
880  * @length can be -1, in which case all memory starting from @idx is removed.
881  */
882 void
883 gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, gint length)
884 {
885   guint len;
886
887   g_return_if_fail (GST_IS_BUFFER (buffer));
888   g_return_if_fail (gst_buffer_is_writable (buffer));
889
890   len = GST_BUFFER_MEM_LEN (buffer);
891   g_return_if_fail ((length == -1 && idx < len) || length + idx <= len);
892
893   if (length == -1)
894     length = len - idx;
895
896   _replace_memory (buffer, len, idx, length, NULL);
897 }
898
899 /**
900  * gst_buffer_find_memory:
901  * @buffer: a #GstBuffer.
902  * @offset: an offset
903  * @size: a size
904  * @idx: (out): pointer to index
905  * @length: (out): pointer to length
906  * @skip: (out): pointer to skip
907  *
908  * Find the memory blocks that span @size bytes starting from @offset
909  * in @buffer.
910  *
911  * When this function returns %TRUE, @idx will contain the index of the first
912  * memory bock where the byte for @offset can be found and @length contains the
913  * number of memory blocks containing the @size remaining bytes. @skip contains
914  * the number of bytes to skip in the memory bock at @idx to get to the byte
915  * for @offset.
916  *
917  * @size can be -1 to get all the memory blocks after @idx.
918  *
919  * Returns: %TRUE when @size bytes starting from @offset could be found in
920  * @buffer and @idx, @length and @skip will be filled.
921  */
922 gboolean
923 gst_buffer_find_memory (GstBuffer * buffer, gsize offset, gsize size,
924     guint * idx, guint * length, gsize * skip)
925 {
926   guint i, len, found;
927
928   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
929   g_return_val_if_fail (idx != NULL, FALSE);
930   g_return_val_if_fail (length != NULL, FALSE);
931   g_return_val_if_fail (skip != NULL, FALSE);
932
933   len = GST_BUFFER_MEM_LEN (buffer);
934
935   found = 0;
936   for (i = 0; i < len; i++) {
937     GstMemory *mem;
938     gsize s;
939
940     mem = GST_BUFFER_MEM_PTR (buffer, i);
941     s = gst_memory_get_sizes (mem, NULL, NULL);
942
943     if (s <= offset) {
944       /* block before offset, or empty block, skip */
945       offset -= s;
946     } else {
947       /* block after offset */
948       if (found == 0) {
949         /* first block, remember index and offset */
950         *idx = i;
951         *skip = offset;
952         if (size == -1) {
953           /* return remaining blocks */
954           *length = len - i;
955           return TRUE;
956         }
957         s -= offset;
958         offset = 0;
959       }
960       /* count the amount of found bytes */
961       found += s;
962       if (found >= size) {
963         /* we have enough bytes */
964         *length = i - *idx + 1;
965         return TRUE;
966       }
967     }
968   }
969   return FALSE;
970 }
971
972 /**
973  * gst_buffer_get_sizes_range:
974  * @buffer: a #GstBuffer.
975  * @idx: an index
976  * @length: a length
977  * @offset: a pointer to the offset
978  * @maxsize: a pointer to the maxsize
979  *
980  * Get the total size of @length memory blocks stating from @idx in @buffer.
981  *
982  * When not %NULL, @offset will contain the offset of the data in the
983  * memory block in @buffer at @idx and @maxsize will contain the sum of the size
984  * and @offset and the amount of extra padding on the memory block at @idx +
985  * @length -1.
986  * @offset and @maxsize can be used to resize the buffer memory blocks with
987  * gst_buffer_resize_range().
988  *
989  * Returns: total size @length memory blocks starting at @idx in @buffer.
990  */
991 gsize
992 gst_buffer_get_sizes_range (GstBuffer * buffer, guint idx, gint length,
993     gsize * offset, gsize * maxsize)
994 {
995   guint len;
996   gsize size;
997   GstMemory *mem;
998
999   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1000   len = GST_BUFFER_MEM_LEN (buffer);
1001   g_return_val_if_fail (len == 0 || (length == -1 && idx < len)
1002       || (length + idx <= len), 0);
1003
1004   if (length == -1)
1005     length = len - idx;
1006
1007   if (G_LIKELY (length == 1)) {
1008     /* common case */
1009     mem = GST_BUFFER_MEM_PTR (buffer, idx);
1010     size = gst_memory_get_sizes (mem, offset, maxsize);
1011   } else {
1012     guint i, end;
1013     gsize extra, offs;
1014
1015     end = idx + length;
1016     size = offs = extra = 0;
1017     for (i = idx; i < end; i++) {
1018       gsize s, o, ms;
1019
1020       mem = GST_BUFFER_MEM_PTR (buffer, i);
1021       s = gst_memory_get_sizes (mem, &o, &ms);
1022
1023       if (s) {
1024         if (size == 0)
1025           /* first size, take accumulated data before as the offset */
1026           offs = extra + o;
1027         /* add sizes */
1028         size += s;
1029         /* save the amount of data after this block */
1030         extra = ms - (o + s);
1031       } else {
1032         /* empty block, add as extra */
1033         extra += ms;
1034       }
1035     }
1036     if (offset)
1037       *offset = offs;
1038     if (maxsize)
1039       *maxsize = offs + size + extra;
1040   }
1041   return size;
1042 }
1043
1044 /**
1045  * gst_buffer_resize_range:
1046  * @buffer: a #GstBuffer.
1047  * @idx: an index
1048  * @length: a length
1049  * @offset: the offset adjustement
1050  * @size: the new size or -1 to just adjust the offset
1051  *
1052  * Set the total size of the @length memory blocks starting at @idx in
1053  * @buffer
1054  */
1055 void
1056 gst_buffer_resize_range (GstBuffer * buffer, guint idx, gint length,
1057     gssize offset, gssize size)
1058 {
1059   guint i, len, end;
1060   gsize bsize, bufsize, bufoffs, bufmax;
1061   GstMemory *mem;
1062
1063   g_return_if_fail (gst_buffer_is_writable (buffer));
1064   g_return_if_fail (size >= -1);
1065   len = GST_BUFFER_MEM_LEN (buffer);
1066   g_return_if_fail ((length == -1 && idx < len) || (length + idx <= len));
1067
1068   if (length == -1)
1069     length = len - idx;
1070
1071   bufsize = gst_buffer_get_sizes_range (buffer, idx, length, &bufoffs, &bufmax);
1072
1073   GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
1074       " size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
1075       G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
1076
1077   /* we can't go back further than the current offset or past the end of the
1078    * buffer */
1079   g_return_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
1080           && bufoffs + offset <= bufmax));
1081   if (size == -1) {
1082     g_return_if_fail (bufsize >= offset);
1083     size = bufsize - offset;
1084   }
1085   g_return_if_fail (bufmax >= bufoffs + offset + size);
1086
1087   /* no change */
1088   if (offset == 0 && size == bufsize)
1089     return;
1090
1091   end = idx + length;
1092   /* copy and trim */
1093   for (i = idx; i < end; i++) {
1094     gsize left, noffs;
1095
1096     mem = GST_BUFFER_MEM_PTR (buffer, i);
1097     bsize = gst_memory_get_sizes (mem, NULL, NULL);
1098
1099     noffs = 0;
1100     /* last buffer always gets resized to the remaining size */
1101     if (i + 1 == end)
1102       left = size;
1103     /* shrink buffers before the offset */
1104     else if ((gssize) bsize <= offset) {
1105       left = 0;
1106       noffs = offset - bsize;
1107       offset = 0;
1108     }
1109     /* clip other buffers */
1110     else
1111       left = MIN (bsize - offset, size);
1112
1113     if (offset != 0 || left != bsize) {
1114       if (gst_memory_is_exclusive (mem)) {
1115         gst_memory_resize (mem, offset, left);
1116       } else {
1117         GstMemory *tmp;
1118
1119         if (mem->flags & GST_MEMORY_FLAG_NO_SHARE)
1120           tmp = gst_memory_copy (mem, offset, left);
1121         else
1122           tmp = gst_memory_share (mem, offset, left);
1123
1124         gst_memory_unref (mem);
1125         mem = tmp;
1126       }
1127     }
1128     offset = noffs;
1129     size -= left;
1130
1131     GST_BUFFER_MEM_PTR (buffer, i) = mem;
1132   }
1133 }
1134
1135 /**
1136  * gst_buffer_map_range:
1137  * @buffer: a #GstBuffer.
1138  * @idx: an index
1139  * @length: a length
1140  * @info: (out): info about the mapping
1141  * @flags: flags for the mapping
1142  *
1143  * This function fills @info with the #GstMapInfo of @length merged memory blocks
1144  * starting at @idx in @buffer. When @length is -1, all memory blocks starting
1145  * from @idx are merged and mapped.
1146  * @flags describe the desired access of the memory. When @flags is
1147  * #GST_MAP_WRITE, @buffer should be writable (as returned from
1148  * gst_buffer_is_writable()).
1149  *
1150  * When @buffer is writable but the memory isn't, a writable copy will
1151  * automatically be created and returned. The readonly copy of the buffer memory
1152  * will then also be replaced with this writable copy.
1153  *
1154  * The memory in @info should be unmapped with gst_buffer_unmap() after usage.
1155  *
1156  * Returns: (transfer full): %TRUE if the map succeeded and @info contains valid
1157  * data.
1158  */
1159 gboolean
1160 gst_buffer_map_range (GstBuffer * buffer, guint idx, gint length,
1161     GstMapInfo * info, GstMapFlags flags)
1162 {
1163   GstMemory *mem, *nmem;
1164   gboolean write, writable;
1165   gsize len;
1166
1167   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1168   g_return_val_if_fail (info != NULL, FALSE);
1169   len = GST_BUFFER_MEM_LEN (buffer);
1170   if (len == 0)
1171     goto no_memory;
1172   g_return_val_if_fail ((length == -1 && idx < len) || (length > 0
1173           && length + idx <= len), FALSE);
1174
1175   write = (flags & GST_MAP_WRITE) != 0;
1176   writable = gst_buffer_is_writable (buffer);
1177
1178   /* check if we can write when asked for write access */
1179   if (G_UNLIKELY (write && !writable))
1180     goto not_writable;
1181
1182   if (length == -1)
1183     length = len - idx;
1184
1185   mem = _get_merged_memory (buffer, idx, length);
1186   if (G_UNLIKELY (mem == NULL))
1187     goto no_memory;
1188
1189   /* now try to map */
1190   nmem = gst_memory_make_mapped (mem, info, flags);
1191   if (G_UNLIKELY (nmem == NULL))
1192     goto cannot_map;
1193
1194   /* if we merged or when the map returned a different memory, we try to replace
1195    * the memory in the buffer */
1196   if (G_UNLIKELY (length > 1 || nmem != mem)) {
1197     /* if the buffer is writable, replace the memory */
1198     if (writable) {
1199       _replace_memory (buffer, len, idx, length, gst_memory_ref (nmem));
1200     } else {
1201       if (len > 1) {
1202         GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
1203             "temporary mapping for memory %p in buffer %p", nmem, buffer);
1204       }
1205     }
1206   }
1207   return TRUE;
1208
1209   /* ERROR */
1210 not_writable:
1211   {
1212     GST_WARNING_OBJECT (buffer, "write map requested on non-writable buffer");
1213     g_critical ("write map requested on non-writable buffer");
1214     return FALSE;
1215   }
1216 no_memory:
1217   {
1218     /* empty buffer, we need to return NULL */
1219     GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
1220     info->memory = NULL;
1221     info->data = NULL;
1222     info->size = 0;
1223     info->maxsize = 0;
1224     return TRUE;
1225   }
1226 cannot_map:
1227   {
1228     GST_DEBUG_OBJECT (buffer, "cannot map memory");
1229     return FALSE;
1230   }
1231 }
1232
1233 /**
1234  * gst_buffer_unmap:
1235  * @buffer: a #GstBuffer.
1236  * @info: a #GstMapInfo
1237  *
1238  * Release the memory previously mapped with gst_buffer_map().
1239  */
1240 void
1241 gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
1242 {
1243   g_return_if_fail (GST_IS_BUFFER (buffer));
1244   g_return_if_fail (info != NULL);
1245
1246   /* we need to check for NULL, it is possible that we tried to map a buffer
1247    * without memory and we should be able to unmap that fine */
1248   if (G_LIKELY (info->memory)) {
1249     gst_memory_unmap (info->memory, info);
1250     gst_memory_unref (info->memory);
1251   }
1252 }
1253
1254 /**
1255  * gst_buffer_fill:
1256  * @buffer: a #GstBuffer.
1257  * @offset: the offset to fill
1258  * @src: the source address
1259  * @size: the size to fill
1260  *
1261  * Copy @size bytes from @src to @buffer at @offset.
1262  *
1263  * Returns: The amount of bytes copied. This value can be lower than @size
1264  *    when @buffer did not contain enough data.
1265  */
1266 gsize
1267 gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
1268     gsize size)
1269 {
1270   gsize i, len, left;
1271   const guint8 *ptr = src;
1272
1273   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1274   g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1275   g_return_val_if_fail (src != NULL, 0);
1276
1277   len = GST_BUFFER_MEM_LEN (buffer);
1278   left = size;
1279
1280   for (i = 0; i < len && left > 0; i++) {
1281     GstMapInfo info;
1282     gsize tocopy;
1283     GstMemory *mem;
1284
1285     mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1286     if (info.size > offset) {
1287       /* we have enough */
1288       tocopy = MIN (info.size - offset, left);
1289       memcpy ((guint8 *) info.data + offset, ptr, tocopy);
1290       left -= tocopy;
1291       ptr += tocopy;
1292       offset = 0;
1293     } else {
1294       /* offset past buffer, skip */
1295       offset -= info.size;
1296     }
1297     gst_memory_unmap (mem, &info);
1298   }
1299   return size - left;
1300 }
1301
1302 /**
1303  * gst_buffer_extract:
1304  * @buffer: a #GstBuffer.
1305  * @offset: the offset to extract
1306  * @dest: the destination address
1307  * @size: the size to extract
1308  *
1309  * Copy @size bytes starting from @offset in @buffer to @dest.
1310  *
1311  * Returns: The amount of bytes extracted. This value can be lower than @size
1312  *    when @buffer did not contain enough data.
1313  */
1314 gsize
1315 gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
1316 {
1317   gsize i, len, left;
1318   guint8 *ptr = dest;
1319
1320   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1321   g_return_val_if_fail (dest != NULL, 0);
1322
1323   len = GST_BUFFER_MEM_LEN (buffer);
1324   left = size;
1325
1326   for (i = 0; i < len && left > 0; i++) {
1327     GstMapInfo info;
1328     gsize tocopy;
1329     GstMemory *mem;
1330
1331     mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1332     if (info.size > offset) {
1333       /* we have enough */
1334       tocopy = MIN (info.size - offset, left);
1335       memcpy (ptr, (guint8 *) info.data + offset, tocopy);
1336       left -= tocopy;
1337       ptr += tocopy;
1338       offset = 0;
1339     } else {
1340       /* offset past buffer, skip */
1341       offset -= info.size;
1342     }
1343     gst_memory_unmap (mem, &info);
1344   }
1345   return size - left;
1346 }
1347
1348 /**
1349  * gst_buffer_memcmp:
1350  * @buffer: a #GstBuffer.
1351  * @offset: the offset in @buffer
1352  * @mem: the memory to compare
1353  * @size: the size to compare
1354  *
1355  * Compare @size bytes starting from @offset in @buffer with the memory in @mem.
1356  *
1357  * Returns: 0 if the memory is equal.
1358  */
1359 gint
1360 gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
1361     gsize size)
1362 {
1363   gsize i, len;
1364   const guint8 *ptr = mem;
1365   gint res = 0;
1366
1367   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1368   g_return_val_if_fail (mem != NULL, 0);
1369
1370   len = GST_BUFFER_MEM_LEN (buffer);
1371
1372   for (i = 0; i < len && size > 0 && res == 0; i++) {
1373     GstMapInfo info;
1374     gsize tocmp;
1375     GstMemory *mem;
1376
1377     mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1378     if (info.size > offset) {
1379       /* we have enough */
1380       tocmp = MIN (info.size - offset, size);
1381       res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
1382       size -= tocmp;
1383       ptr += tocmp;
1384       offset = 0;
1385     } else {
1386       /* offset past buffer, skip */
1387       offset -= info.size;
1388     }
1389     gst_memory_unmap (mem, &info);
1390   }
1391   return res;
1392 }
1393
1394 /**
1395  * gst_buffer_memset:
1396  * @buffer: a #GstBuffer.
1397  * @offset: the offset in @buffer
1398  * @val: the value to set
1399  * @size: the size to set
1400  *
1401  * Fill @buf with @size bytes with @val starting from @offset.
1402  *
1403  * Returns: The amount of bytes filled. This value can be lower than @size
1404  *    when @buffer did not contain enough data.
1405  */
1406 gsize
1407 gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
1408 {
1409   gsize i, len, left;
1410
1411   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1412   g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1413
1414   len = GST_BUFFER_MEM_LEN (buffer);
1415   left = size;
1416
1417   for (i = 0; i < len && left > 0; i++) {
1418     GstMapInfo info;
1419     gsize toset;
1420     GstMemory *mem;
1421
1422     mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1423     if (info.size > offset) {
1424       /* we have enough */
1425       toset = MIN (info.size - offset, left);
1426       memset ((guint8 *) info.data + offset, val, toset);
1427       left -= toset;
1428       offset = 0;
1429     } else {
1430       /* offset past buffer, skip */
1431       offset -= info.size;
1432     }
1433     gst_memory_unmap (mem, &info);
1434   }
1435   return size - left;
1436 }
1437
1438 /**
1439  * gst_buffer_copy_region:
1440  * @parent: a #GstBuffer.
1441  * @flags: the #GstBufferCopyFlags
1442  * @offset: the offset into parent #GstBuffer at which the new sub-buffer 
1443  *          begins.
1444  * @size: the size of the new #GstBuffer sub-buffer, in bytes.
1445  *
1446  * Creates a sub-buffer from @parent at @offset and @size.
1447  * This sub-buffer uses the actual memory space of the parent buffer.
1448  * This function will copy the offset and timestamp fields when the
1449  * offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and 
1450  * #GST_BUFFER_OFFSET_NONE.
1451  * If @offset equals 0 and @size equals the total size of @buffer, the
1452  * duration and offset end fields are also copied. If not they will be set
1453  * to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
1454  *
1455  * MT safe.
1456  *
1457  * Returns: (transfer full): the new #GstBuffer or NULL if the arguments were
1458  *     invalid.
1459  */
1460 GstBuffer *
1461 gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
1462     gsize offset, gsize size)
1463 {
1464   GstBuffer *copy;
1465
1466   g_return_val_if_fail (buffer != NULL, NULL);
1467
1468   /* create the new buffer */
1469   copy = gst_buffer_new ();
1470
1471   GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
1472       "-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
1473
1474   gst_buffer_copy_into (copy, buffer, flags, offset, size);
1475
1476   return copy;
1477 }
1478
1479 /**
1480  * gst_buffer_append:
1481  * @buf1: (transfer full): the first source #GstBuffer to append.
1482  * @buf2: (transfer full): the second source #GstBuffer to append.
1483  *
1484  * Append all the memory from @buf2 to @buf1. The result buffer will contain a
1485  * concatenation of the memory of @buf1 and @buf2.
1486  *
1487  * Returns: (transfer full): the new #GstBuffer that contains the memory
1488  *     of the two source buffers.
1489  */
1490 GstBuffer *
1491 gst_buffer_append (GstBuffer * buf1, GstBuffer * buf2)
1492 {
1493   gsize i, len;
1494
1495   g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
1496   g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
1497
1498   buf1 = gst_buffer_make_writable (buf1);
1499   buf2 = gst_buffer_make_writable (buf2);
1500
1501   len = GST_BUFFER_MEM_LEN (buf2);
1502   for (i = 0; i < len; i++) {
1503     GstMemory *mem;
1504
1505     mem = GST_BUFFER_MEM_PTR (buf2, i);
1506     GST_BUFFER_MEM_PTR (buf2, i) = NULL;
1507     _memory_add (buf1, -1, mem);
1508   }
1509
1510   /* we can calculate the duration too. Also make sure we're not messing
1511    * with invalid DURATIONS */
1512   if (GST_BUFFER_DURATION_IS_VALID (buf1) &&
1513       GST_BUFFER_DURATION_IS_VALID (buf2)) {
1514     /* add duration */
1515     GST_BUFFER_DURATION (buf1) += GST_BUFFER_DURATION (buf2);
1516   }
1517   if (GST_BUFFER_OFFSET_END_IS_VALID (buf2)) {
1518     /* set offset_end */
1519     GST_BUFFER_OFFSET_END (buf1) = GST_BUFFER_OFFSET_END (buf2);
1520   }
1521
1522   GST_BUFFER_MEM_LEN (buf2) = 0;
1523   gst_buffer_unref (buf2);
1524
1525   return buf1;
1526 }
1527
1528 /**
1529  * gst_buffer_get_meta:
1530  * @buffer: a #GstBuffer
1531  * @api: the #GType of an API
1532  *
1533  * Get the metadata for @api on buffer. When there is no such
1534  * metadata, NULL is returned.
1535  *
1536  * Returns: the metadata for @api on @buffer.
1537  */
1538 GstMeta *
1539 gst_buffer_get_meta (GstBuffer * buffer, GType api)
1540 {
1541   GstMetaItem *item;
1542   GstMeta *result = NULL;
1543
1544   g_return_val_if_fail (buffer != NULL, NULL);
1545   g_return_val_if_fail (api != 0, NULL);
1546
1547   /* find GstMeta of the requested API */
1548   for (item = GST_BUFFER_META (buffer); item; item = item->next) {
1549     GstMeta *meta = &item->meta;
1550     if (meta->info->api == api) {
1551       result = meta;
1552       break;
1553     }
1554   }
1555   return result;
1556 }
1557
1558 /**
1559  * gst_buffer_add_meta:
1560  * @buffer: a #GstBuffer
1561  * @info: a #GstMetaInfo
1562  * @params: params for @info
1563  *
1564  * Add metadata for @info to @buffer using the parameters in @params.
1565  *
1566  * Returns: (transfer none): the metadata for the api in @info on @buffer.
1567  */
1568 GstMeta *
1569 gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
1570     gpointer params)
1571 {
1572   GstMetaItem *item;
1573   GstMeta *result = NULL;
1574   gsize size;
1575
1576   g_return_val_if_fail (buffer != NULL, NULL);
1577   g_return_val_if_fail (info != NULL, NULL);
1578   g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
1579
1580   /* create a new slice */
1581   size = ITEM_SIZE (info);
1582   item = g_slice_alloc (size);
1583   result = &item->meta;
1584   result->info = info;
1585   result->flags = GST_META_FLAG_NONE;
1586
1587   GST_CAT_DEBUG (GST_CAT_BUFFER,
1588       "alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
1589       g_type_name (info->type), info->size);
1590
1591   /* call the init_func when needed */
1592   if (info->init_func)
1593     if (!info->init_func (result, params, buffer))
1594       goto init_failed;
1595
1596   /* and add to the list of metadata */
1597   item->next = GST_BUFFER_META (buffer);
1598   GST_BUFFER_META (buffer) = item;
1599
1600   return result;
1601
1602 init_failed:
1603   {
1604     g_slice_free1 (size, item);
1605     return NULL;
1606   }
1607 }
1608
1609 /**
1610  * gst_buffer_remove_meta:
1611  * @buffer: a #GstBuffer
1612  * @meta: a #GstMeta
1613  *
1614  * Remove the metadata for @meta on @buffer.
1615  *
1616  * Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
1617  * metadata was on @buffer.
1618  */
1619 gboolean
1620 gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
1621 {
1622   GstMetaItem *walk, *prev;
1623
1624   g_return_val_if_fail (buffer != NULL, FALSE);
1625   g_return_val_if_fail (meta != NULL, FALSE);
1626   g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
1627
1628   /* find the metadata and delete */
1629   prev = GST_BUFFER_META (buffer);
1630   for (walk = prev; walk; walk = walk->next) {
1631     GstMeta *m = &walk->meta;
1632     if (m == meta) {
1633       const GstMetaInfo *info = meta->info;
1634
1635       /* remove from list */
1636       if (GST_BUFFER_META (buffer) == walk)
1637         GST_BUFFER_META (buffer) = walk->next;
1638       else
1639         prev->next = walk->next;
1640       /* call free_func if any */
1641       if (info->free_func)
1642         info->free_func (m, buffer);
1643
1644       /* and free the slice */
1645       g_slice_free1 (ITEM_SIZE (info), walk);
1646       break;
1647     }
1648     prev = walk;
1649   }
1650   return walk != NULL;
1651 }
1652
1653 /**
1654  * gst_buffer_iterate_meta:
1655  * @buffer: a #GstBuffer
1656  * @state: an opaque state pointer
1657  *
1658  * Retrieve the next #GstMeta after @current. If @state points
1659  * to %NULL, the first metadata is returned.
1660  *
1661  * @state will be updated with an opage state pointer 
1662  *
1663  * Returns: The next #GstMeta or %NULL when there are no more items.
1664  */
1665 GstMeta *
1666 gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
1667 {
1668   GstMetaItem **meta;
1669
1670   g_return_val_if_fail (buffer != NULL, NULL);
1671   g_return_val_if_fail (state != NULL, NULL);
1672
1673   meta = (GstMetaItem **) state;
1674   if (*meta == NULL)
1675     /* state NULL, move to first item */
1676     *meta = GST_BUFFER_META (buffer);
1677   else
1678     /* state !NULL, move to next item in list */
1679     *meta = (*meta)->next;
1680
1681   if (*meta)
1682     return &(*meta)->meta;
1683   else
1684     return NULL;
1685 }
1686
1687 /**
1688  * gst_buffer_foreach_meta:
1689  * @buffer: a #GstBuffer
1690  * @func: (scope call): a #GstBufferForeachMetaFunc to call
1691  * @user_data: (closure): user data passed to @func
1692  *
1693  * Call @func with @user_data for each meta in @buffer.
1694  *
1695  * @func can modify the passed meta pointer or its contents. The return value
1696  * of @func define if this function returns or if the remaining metadata items
1697  * in the buffer should be skipped.
1698  */
1699 void
1700 gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
1701     gpointer user_data)
1702 {
1703   GstMetaItem *walk, *prev, *next;
1704
1705   g_return_if_fail (buffer != NULL);
1706   g_return_if_fail (func != NULL);
1707
1708   /* find the metadata and delete */
1709   prev = GST_BUFFER_META (buffer);
1710   for (walk = prev; walk; walk = next) {
1711     GstMeta *m, *new;
1712     gboolean res;
1713
1714     m = new = &walk->meta;
1715     next = walk->next;
1716
1717     res = func (buffer, &new, user_data);
1718
1719     if (new == NULL) {
1720       const GstMetaInfo *info = m->info;
1721
1722       GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
1723           g_type_name (info->type));
1724
1725       g_return_if_fail (gst_buffer_is_writable (buffer));
1726
1727       /* remove from list */
1728       if (GST_BUFFER_META (buffer) == walk)
1729         GST_BUFFER_META (buffer) = next;
1730       else
1731         prev->next = next;
1732
1733       /* call free_func if any */
1734       if (info->free_func)
1735         info->free_func (m, buffer);
1736
1737       /* and free the slice */
1738       g_slice_free1 (ITEM_SIZE (info), walk);
1739     }
1740     if (!res)
1741       break;
1742   }
1743 }