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