buffer: add more debug
[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     g_slice_free1 (msize, buffer);
537   else
538     gst_memory_unref (GST_BUFFER_BUFMEM (buffer));
539 }
540
541 static void
542 gst_buffer_init (GstBufferImpl * buffer, gsize size)
543 {
544   gst_mini_object_init (GST_MINI_OBJECT_CAST (buffer), 0, _gst_buffer_type,
545       (GstMiniObjectCopyFunction) _gst_buffer_copy,
546       (GstMiniObjectDisposeFunction) _gst_buffer_dispose,
547       (GstMiniObjectFreeFunction) _gst_buffer_free);
548
549   GST_BUFFER_SLICE_SIZE (buffer) = size;
550
551   GST_BUFFER (buffer)->pool = NULL;
552   GST_BUFFER_PTS (buffer) = GST_CLOCK_TIME_NONE;
553   GST_BUFFER_DTS (buffer) = GST_CLOCK_TIME_NONE;
554   GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
555   GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
556   GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
557
558   GST_BUFFER_MEM_LEN (buffer) = 0;
559   GST_BUFFER_META (buffer) = NULL;
560 }
561
562 /**
563  * gst_buffer_new:
564  *
565  * Creates a newly allocated buffer without any data.
566  *
567  * MT safe.
568  *
569  * Returns: (transfer full): the new #GstBuffer.
570  */
571 GstBuffer *
572 gst_buffer_new (void)
573 {
574   GstBufferImpl *newbuf;
575
576   newbuf = g_slice_new (GstBufferImpl);
577   GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
578
579   gst_buffer_init (newbuf, sizeof (GstBufferImpl));
580
581   return GST_BUFFER_CAST (newbuf);
582 }
583
584 /**
585  * gst_buffer_new_allocate:
586  * @allocator: (transfer none) (allow-none): the #GstAllocator to use, or NULL to use the
587  *     default allocator
588  * @size: the size in bytes of the new buffer's data.
589  * @params: (transfer none) (allow-none): optional parameters
590  *
591  * Tries to create a newly allocated buffer with data of the given size and
592  * extra parameters from @allocator. If the requested amount of memory can't be
593  * allocated, NULL will be returned. The allocated buffer memory is not cleared.
594  *
595  * When @allocator is NULL, the default memory allocator will be used.
596  *
597  * Note that when @size == 0, the buffer will not have memory associated with it.
598  *
599  * MT safe.
600  *
601  * Returns: (transfer full): a new #GstBuffer, or NULL if the memory couldn't
602  *     be allocated.
603  */
604 GstBuffer *
605 gst_buffer_new_allocate (GstAllocator * allocator, gsize size,
606     GstAllocationParams * params)
607 {
608   GstBuffer *newbuf;
609   GstMemory *mem;
610 #if 0
611   guint8 *data;
612   gsize asize;
613 #endif
614
615 #if 1
616   if (size > 0) {
617     mem = gst_allocator_alloc (allocator, size, params);
618     if (G_UNLIKELY (mem == NULL))
619       goto no_memory;
620   } else {
621     mem = NULL;
622   }
623
624   newbuf = gst_buffer_new ();
625
626   if (mem != NULL)
627     _memory_add (newbuf, -1, mem, TRUE);
628
629   GST_CAT_LOG (GST_CAT_BUFFER,
630       "new buffer %p of size %" G_GSIZE_FORMAT " from allocator %p", newbuf,
631       size, allocator);
632 #endif
633
634 #if 0
635   asize = sizeof (GstBufferImpl) + size;
636   data = g_slice_alloc (asize);
637   if (G_UNLIKELY (data == NULL))
638     goto no_memory;
639
640   newbuf = GST_BUFFER_CAST (data);
641
642   gst_buffer_init ((GstBufferImpl *) data, asize);
643   if (size > 0) {
644     mem = gst_memory_new_wrapped (0, data + sizeof (GstBufferImpl), NULL,
645         size, 0, size);
646     _memory_add (newbuf, -1, mem, TRUE);
647   }
648 #endif
649
650 #if 0
651   /* allocate memory and buffer, it might be interesting to do this but there
652    * are many complications. We need to keep the memory mapped to access the
653    * buffer fields and the memory for the buffer might be just very slow. We
654    * also need to do some more magic to get the alignment right. */
655   asize = sizeof (GstBufferImpl) + size;
656   mem = gst_allocator_alloc (allocator, asize, align);
657   if (G_UNLIKELY (mem == NULL))
658     goto no_memory;
659
660   /* map the data part and init the buffer in it, set the buffer size to 0 so
661    * that a finalize won't free the buffer */
662   data = gst_memory_map (mem, &asize, NULL, GST_MAP_WRITE);
663   gst_buffer_init ((GstBufferImpl *) data, 0);
664   gst_memory_unmap (mem);
665
666   /* strip off the buffer */
667   gst_memory_resize (mem, sizeof (GstBufferImpl), size);
668
669   newbuf = GST_BUFFER_CAST (data);
670   GST_BUFFER_BUFMEM (newbuf) = mem;
671
672   if (size > 0)
673     _memory_add (newbuf, -1, gst_memory_ref (mem), TRUE);
674 #endif
675
676   return newbuf;
677
678   /* ERRORS */
679 no_memory:
680   {
681     GST_CAT_WARNING (GST_CAT_BUFFER,
682         "failed to allocate %" G_GSIZE_FORMAT " bytes", size);
683     return NULL;
684   }
685 }
686
687 /**
688  * gst_buffer_new_wrapped_full:
689  * @flags: #GstMemoryFlags
690  * @data: data to wrap
691  * @maxsize: allocated size of @data
692  * @offset: offset in @data
693  * @size: size of valid data
694  * @user_data: user_data
695  * @notify: called with @user_data when the memory is freed
696  *
697  * Allocate a new buffer that wraps the given memory. @data must point to
698  * @maxsize of memory, the wrapped buffer will have the region from @offset and
699  * @size visible.
700  *
701  * When the buffer is destroyed, @notify will be called with @user_data.
702  *
703  * The prefix/padding must be filled with 0 if @flags contains
704  * #GST_MEMORY_FLAG_ZERO_PREFIXED and #GST_MEMORY_FLAG_ZERO_PADDED respectively.
705  *
706  * Returns: (transfer full): a new #GstBuffer
707  */
708 GstBuffer *
709 gst_buffer_new_wrapped_full (GstMemoryFlags flags, gpointer data,
710     gsize maxsize, gsize offset, gsize size, gpointer user_data,
711     GDestroyNotify notify)
712 {
713   GstBuffer *newbuf;
714
715   newbuf = gst_buffer_new ();
716   gst_buffer_append_memory (newbuf,
717       gst_memory_new_wrapped (flags, data, maxsize, offset, size,
718           user_data, notify));
719
720   return newbuf;
721 }
722
723 /**
724  * gst_buffer_new_wrapped:
725  * @data: data to wrap
726  * @size: allocated size of @data
727  *
728  * Creates a new buffer that wraps the given @data. The memory will be freed
729  * with g_free and will be marked writable.
730  *
731  * MT safe.
732  *
733  * Returns: (transfer full): a new #GstBuffer
734  */
735 GstBuffer *
736 gst_buffer_new_wrapped (gpointer data, gsize size)
737 {
738   return gst_buffer_new_wrapped_full (0, data, size, 0, size, data, g_free);
739 }
740
741 /**
742  * gst_buffer_n_memory:
743  * @buffer: a #GstBuffer.
744  *
745  * Get the amount of memory blocks that this buffer has.
746  *
747  * Returns: (transfer full): the amount of memory block in this buffer.
748  */
749 guint
750 gst_buffer_n_memory (GstBuffer * buffer)
751 {
752   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
753
754   return GST_BUFFER_MEM_LEN (buffer);
755 }
756
757 /**
758  * gst_buffer_prepend_memory:
759  * @b: a #GstBuffer.
760  * @m: (transfer full): a #GstMemory.
761  *
762  * Prepend the memory block @m to @b. This function takes ownership
763  * of @m and thus doesn't increase its refcount.
764  */
765 /**
766  * gst_buffer_append_memory:
767  * @b: a #GstBuffer.
768  * @m: (transfer full): a #GstMemory.
769  *
770  * Append the memory block @m to @b. This function takes ownership
771  * of @m and thus doesn't increase its refcount.
772  */
773 /**
774  * gst_buffer_insert_memory:
775  * @buffer: a #GstBuffer.
776  * @idx: the index to add the memory at, or -1 to append it to the end
777  * @mem: (transfer full): a #GstMemory.
778  *
779  * Insert the memory block @mem to @buffer at @idx. This function takes ownership
780  * of @mem and thus doesn't increase its refcount.
781  */
782 void
783 gst_buffer_insert_memory (GstBuffer * buffer, gint idx, GstMemory * mem)
784 {
785   g_return_if_fail (GST_IS_BUFFER (buffer));
786   g_return_if_fail (gst_buffer_is_writable (buffer));
787   g_return_if_fail (mem != NULL);
788   g_return_if_fail (idx == -1 ||
789       (idx >= 0 && idx <= GST_BUFFER_MEM_LEN (buffer)));
790
791   _memory_add (buffer, idx, mem, TRUE);
792 }
793
794 static GstMemory *
795 _get_mapped (GstBuffer * buffer, guint idx, GstMapInfo * info,
796     GstMapFlags flags)
797 {
798   GstMemory *mem, *mapped;
799
800   mem = gst_memory_ref (GST_BUFFER_MEM_PTR (buffer, idx));
801
802   mapped = gst_memory_make_mapped (mem, info, flags);
803
804   if (mapped != mem) {
805     /* memory changed, lock new memory */
806     gst_memory_lock (mapped, GST_LOCK_FLAG_EXCLUSIVE);
807     GST_BUFFER_MEM_PTR (buffer, idx) = mapped;
808     /* unlock old memory */
809     gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
810   }
811   gst_memory_unref (mem);
812
813   return mapped;
814 }
815
816 /**
817  * gst_buffer_peek_memory:
818  * @buffer: a #GstBuffer.
819  * @idx: an index
820  *
821  * Get the memory block at @idx in @buffer. The memory block stays valid until
822  * the memory block in @buffer is removed, replaced or merged, typically with
823  * any call that modifies the memory in @buffer.
824  *
825  * Since this call does not influence the refcount of the memory,
826  * gst_memory_is_writable() can be used to check if @buffer is the sole owner
827  * of the returned memory.
828  *
829  * Returns: (transfer none): the #GstMemory at @idx.
830  */
831 GstMemory *
832 gst_buffer_peek_memory (GstBuffer * buffer, guint idx)
833 {
834   guint len;
835
836   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
837   len = GST_BUFFER_MEM_LEN (buffer);
838   g_return_val_if_fail (idx < len, NULL);
839
840   return GST_BUFFER_MEM_PTR (buffer, idx);
841 }
842
843 /**
844  * gst_buffer_get_memory:
845  * @b: a #GstBuffer.
846  * @i: an index
847  *
848  * Get the memory block at index @i in @buffer.
849  *
850  * Returns: (transfer full): a #GstMemory that contains the data of the
851  * memory block at @idx. Use gst_memory_unref () after usage.
852  */
853 /**
854  * gst_buffer_get_all_memory:
855  * @b: a #GstBuffer.
856  *
857  * Get all the memory block in @buffer. The memory blocks will be merged
858  * into one large #GstMemory.
859  *
860  * Returns: (transfer full): a #GstMemory that contains the merged memory.
861  * Use gst_memory_unref () after usage.
862  */
863 /**
864  * gst_buffer_get_memory_range:
865  * @buffer: a #GstBuffer.
866  * @idx: an index
867  * @length: a length
868  *
869  * Get @length memory blocks in @buffer starting at @idx. The memory blocks will
870  * be merged into one large #GstMemory.
871  *
872  * If @length is -1, all memory starting from @idx is merged.
873  *
874  * Returns: (transfer full): a #GstMemory that contains the merged data of @length
875  *    blocks starting at @idx. Use gst_memory_unref () after usage.
876  */
877 GstMemory *
878 gst_buffer_get_memory_range (GstBuffer * buffer, guint idx, gint length)
879 {
880   guint len;
881
882   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
883
884   g_return_val_if_fail (GST_IS_BUFFER (buffer), NULL);
885   len = GST_BUFFER_MEM_LEN (buffer);
886   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
887       (length == -1 && idx < len) || (length > 0 && length + idx <= len), NULL);
888
889   if (length == -1)
890     length = len - idx;
891
892   return _get_merged_memory (buffer, idx, length);
893 }
894
895 /**
896  * gst_buffer_replace_memory:
897  * @b: a #GstBuffer.
898  * @i: an index
899  * @m: (transfer full): a #GstMemory
900  *
901  * Replaces the memory block at index @i in @b with @m.
902  */
903 /**
904  * gst_buffer_replace_all_memory:
905  * @b: a #GstBuffer.
906  * @m: (transfer full): a #GstMemory
907  *
908  * Replaces all memory in @b with @m.
909  */
910 /**
911  * gst_buffer_replace_memory_range:
912  * @buffer: a #GstBuffer.
913  * @idx: an index
914  * @length: a length should not be 0
915  * @mem: (transfer full): a #GstMemory
916  *
917  * Replaces @length memory blocks in @buffer starting at @idx with @mem.
918  *
919  * If @length is -1, all memory starting from @idx will be removed and
920  * replaced with @mem.
921  *
922  * @buffer should be writable.
923  */
924 void
925 gst_buffer_replace_memory_range (GstBuffer * buffer, guint idx, gint length,
926     GstMemory * mem)
927 {
928   guint len;
929
930   g_return_if_fail (GST_IS_BUFFER (buffer));
931   g_return_if_fail (gst_buffer_is_writable (buffer));
932
933   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d, %p", idx, length, mem);
934
935   len = GST_BUFFER_MEM_LEN (buffer);
936   g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
937       (length == -1 && idx < len) || (length > 0 && length + idx <= len));
938
939   if (length == -1)
940     length = len - idx;
941
942   _replace_memory (buffer, len, idx, length, mem);
943 }
944
945 /**
946  * gst_buffer_remove_memory:
947  * @b: a #GstBuffer.
948  * @i: an index
949  *
950  * Remove the memory block in @b at index @i.
951  */
952 /**
953  * gst_buffer_remove_all_memory:
954  * @b: a #GstBuffer.
955  *
956  * Remove all the memory blocks in @b.
957  */
958 /**
959  * gst_buffer_remove_memory_range:
960  * @buffer: a #GstBuffer.
961  * @idx: an index
962  * @length: a length
963  *
964  * Remove @length memory blocks in @buffer starting from @idx.
965  *
966  * @length can be -1, in which case all memory starting from @idx is removed.
967  */
968 void
969 gst_buffer_remove_memory_range (GstBuffer * buffer, guint idx, gint length)
970 {
971   guint len;
972
973   g_return_if_fail (GST_IS_BUFFER (buffer));
974   g_return_if_fail (gst_buffer_is_writable (buffer));
975
976   GST_CAT_DEBUG (GST_CAT_BUFFER, "idx %u, length %d", idx, length);
977
978   len = GST_BUFFER_MEM_LEN (buffer);
979   g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
980       (length == -1 && idx < len) || length + idx <= len);
981
982   if (length == -1)
983     length = len - idx;
984
985   _replace_memory (buffer, len, idx, length, NULL);
986 }
987
988 /**
989  * gst_buffer_find_memory:
990  * @buffer: a #GstBuffer.
991  * @offset: an offset
992  * @size: a size
993  * @idx: (out): pointer to index
994  * @length: (out): pointer to length
995  * @skip: (out): pointer to skip
996  *
997  * Find the memory blocks that span @size bytes starting from @offset
998  * in @buffer.
999  *
1000  * When this function returns %TRUE, @idx will contain the index of the first
1001  * memory bock where the byte for @offset can be found and @length contains the
1002  * number of memory blocks containing the @size remaining bytes. @skip contains
1003  * the number of bytes to skip in the memory bock at @idx to get to the byte
1004  * for @offset.
1005  *
1006  * @size can be -1 to get all the memory blocks after @idx.
1007  *
1008  * Returns: %TRUE when @size bytes starting from @offset could be found in
1009  * @buffer and @idx, @length and @skip will be filled.
1010  */
1011 gboolean
1012 gst_buffer_find_memory (GstBuffer * buffer, gsize offset, gsize size,
1013     guint * idx, guint * length, gsize * skip)
1014 {
1015   guint i, len, found;
1016
1017   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1018   g_return_val_if_fail (idx != NULL, FALSE);
1019   g_return_val_if_fail (length != NULL, FALSE);
1020   g_return_val_if_fail (skip != NULL, FALSE);
1021
1022   len = GST_BUFFER_MEM_LEN (buffer);
1023
1024   found = 0;
1025   for (i = 0; i < len; i++) {
1026     GstMemory *mem;
1027     gsize s;
1028
1029     mem = GST_BUFFER_MEM_PTR (buffer, i);
1030     s = gst_memory_get_sizes (mem, NULL, NULL);
1031
1032     if (s <= offset) {
1033       /* block before offset, or empty block, skip */
1034       offset -= s;
1035     } else {
1036       /* block after offset */
1037       if (found == 0) {
1038         /* first block, remember index and offset */
1039         *idx = i;
1040         *skip = offset;
1041         if (size == -1) {
1042           /* return remaining blocks */
1043           *length = len - i;
1044           return TRUE;
1045         }
1046         s -= offset;
1047         offset = 0;
1048       }
1049       /* count the amount of found bytes */
1050       found += s;
1051       if (found >= size) {
1052         /* we have enough bytes */
1053         *length = i - *idx + 1;
1054         return TRUE;
1055       }
1056     }
1057   }
1058   return FALSE;
1059 }
1060
1061 /**
1062  * gst_buffer_get_sizes:
1063  * @b: a #GstBuffer.
1064  * @of: a pointer to the offset
1065  * @ms: a pointer to the maxsize
1066  *
1067  * Get the total size of the memory blocks in @b.
1068  *
1069  * When not %NULL, @of will contain the offset of the data in the first
1070  * memory block in @buffer and @maxsize will contain the sum of the size
1071  * and @of and the amount of extra padding on the last memory block.
1072  * @of and @ms can be used to resize the buffer memory blocks with
1073  * gst_buffer_resize().
1074  *
1075  * Returns: total size of the memory blocks in @b.
1076  */
1077 /**
1078  * gst_buffer_get_size:
1079  * @b: a #GstBuffer.
1080  *
1081  * Get the total size of the memory blocks in @b.
1082  *
1083  * Returns: total size of the memory blocks in @b.
1084  */
1085 /**
1086  * gst_buffer_get_sizes_range:
1087  * @buffer: a #GstBuffer.
1088  * @idx: an index
1089  * @length: a length
1090  * @offset: a pointer to the offset
1091  * @maxsize: a pointer to the maxsize
1092  *
1093  * Get the total size of @length memory blocks stating from @idx in @buffer.
1094  *
1095  * When not %NULL, @offset will contain the offset of the data in the
1096  * memory block in @buffer at @idx and @maxsize will contain the sum of the size
1097  * and @offset and the amount of extra padding on the memory block at @idx +
1098  * @length -1.
1099  * @offset and @maxsize can be used to resize the buffer memory blocks with
1100  * gst_buffer_resize_range().
1101  *
1102  * Returns: total size of @length memory blocks starting at @idx in @buffer.
1103  */
1104 gsize
1105 gst_buffer_get_sizes_range (GstBuffer * buffer, guint idx, gint length,
1106     gsize * offset, gsize * maxsize)
1107 {
1108   guint len;
1109   gsize size;
1110   GstMemory *mem;
1111
1112   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1113   len = GST_BUFFER_MEM_LEN (buffer);
1114   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1115       (length == -1 && idx < len) || (length + idx <= len), 0);
1116
1117   if (length == -1)
1118     length = len - idx;
1119
1120   if (G_LIKELY (length == 1)) {
1121     /* common case */
1122     mem = GST_BUFFER_MEM_PTR (buffer, idx);
1123     size = gst_memory_get_sizes (mem, offset, maxsize);
1124   } else {
1125     guint i, end;
1126     gsize extra, offs;
1127
1128     end = idx + length;
1129     size = offs = extra = 0;
1130     for (i = idx; i < end; i++) {
1131       gsize s, o, ms;
1132
1133       mem = GST_BUFFER_MEM_PTR (buffer, i);
1134       s = gst_memory_get_sizes (mem, &o, &ms);
1135
1136       if (s) {
1137         if (size == 0)
1138           /* first size, take accumulated data before as the offset */
1139           offs = extra + o;
1140         /* add sizes */
1141         size += s;
1142         /* save the amount of data after this block */
1143         extra = ms - (o + s);
1144       } else {
1145         /* empty block, add as extra */
1146         extra += ms;
1147       }
1148     }
1149     if (offset)
1150       *offset = offs;
1151     if (maxsize)
1152       *maxsize = offs + size + extra;
1153   }
1154   return size;
1155 }
1156
1157 /**
1158  * gst_buffer_resize:
1159  * @b: a #GstBuffer.
1160  * @of: the offset adjustement
1161  * @s: the new size or -1 to just adjust the offset
1162  *
1163  * Set the offset and total size of the memory blocks in @b.
1164  */
1165 /**
1166  * gst_buffer_set_size:
1167  * @b: a #GstBuffer.
1168  * @s: the new size
1169  *
1170  * Set the total size of the memory blocks in @b.
1171  */
1172 /**
1173  * gst_buffer_resize_range:
1174  * @buffer: a #GstBuffer.
1175  * @idx: an index
1176  * @length: a length
1177  * @offset: the offset adjustement
1178  * @size: the new size or -1 to just adjust the offset
1179  *
1180  * Set the total size of the @length memory blocks starting at @idx in
1181  * @buffer
1182  */
1183 void
1184 gst_buffer_resize_range (GstBuffer * buffer, guint idx, gint length,
1185     gssize offset, gssize size)
1186 {
1187   guint i, len, end;
1188   gsize bsize, bufsize, bufoffs, bufmax;
1189
1190   g_return_if_fail (gst_buffer_is_writable (buffer));
1191   g_return_if_fail (size >= -1);
1192   len = GST_BUFFER_MEM_LEN (buffer);
1193   g_return_if_fail ((len == 0 && idx == 0 && length == -1) ||
1194       (length == -1 && idx < len) || (length + idx <= len));
1195
1196   if (length == -1)
1197     length = len - idx;
1198
1199   bufsize = gst_buffer_get_sizes_range (buffer, idx, length, &bufoffs, &bufmax);
1200
1201   GST_CAT_LOG (GST_CAT_BUFFER, "trim %p %" G_GSSIZE_FORMAT "-%" G_GSSIZE_FORMAT
1202       " size:%" G_GSIZE_FORMAT " offs:%" G_GSIZE_FORMAT " max:%"
1203       G_GSIZE_FORMAT, buffer, offset, size, bufsize, bufoffs, bufmax);
1204
1205   /* we can't go back further than the current offset or past the end of the
1206    * buffer */
1207   g_return_if_fail ((offset < 0 && bufoffs >= -offset) || (offset >= 0
1208           && bufoffs + offset <= bufmax));
1209   if (size == -1) {
1210     g_return_if_fail (bufsize >= offset);
1211     size = bufsize - offset;
1212   }
1213   g_return_if_fail (bufmax >= bufoffs + offset + size);
1214
1215   /* no change */
1216   if (offset == 0 && size == bufsize)
1217     return;
1218
1219   end = idx + length;
1220   /* copy and trim */
1221   for (i = idx; i < end; i++) {
1222     GstMemory *mem;
1223     gsize left, noffs;
1224
1225     mem = GST_BUFFER_MEM_PTR (buffer, i);
1226     bsize = gst_memory_get_sizes (mem, NULL, NULL);
1227
1228     noffs = 0;
1229     /* last buffer always gets resized to the remaining size */
1230     if (i + 1 == end)
1231       left = size;
1232     /* shrink buffers before the offset */
1233     else if ((gssize) bsize <= offset) {
1234       left = 0;
1235       noffs = offset - bsize;
1236       offset = 0;
1237     }
1238     /* clip other buffers */
1239     else
1240       left = MIN (bsize - offset, size);
1241
1242     if (offset != 0 || left != bsize) {
1243       if (gst_memory_is_writable (mem)) {
1244         gst_memory_resize (mem, offset, left);
1245       } else {
1246         GstMemory *newmem;
1247
1248         if (GST_MEMORY_IS_NO_SHARE (mem))
1249           newmem = gst_memory_copy (mem, offset, left);
1250         else
1251           newmem = gst_memory_share (mem, offset, left);
1252
1253         gst_memory_lock (newmem, GST_LOCK_FLAG_EXCLUSIVE);
1254         GST_BUFFER_MEM_PTR (buffer, i) = newmem;
1255         gst_memory_unlock (mem, GST_LOCK_FLAG_EXCLUSIVE);
1256         gst_memory_unref (mem);
1257       }
1258     }
1259
1260     offset = noffs;
1261     size -= left;
1262   }
1263 }
1264
1265 /**
1266  * gst_buffer_map:
1267  * @b: a #GstBuffer.
1268  * @i: (out): info about the mapping
1269  * @f: flags for the mapping
1270  *
1271  * This function fills @i with the #GstMapInfo of all merged memory blocks
1272  * in @buffer.
1273  *
1274  * @flags describe the desired access of the memory. When @flags is
1275  * #GST_MAP_WRITE, @buffer should be writable (as returned from
1276  * gst_buffer_is_writable()).
1277  *
1278  * When @buffer is writable but the memory isn't, a writable copy will
1279  * automatically be created and returned. The readonly copy of the buffer memory
1280  * will then also be replaced with this writable copy.
1281  *
1282  * The memory in @i should be unmapped with gst_buffer_unmap() after usage.
1283  *
1284  * Returns: %TRUE if the map succeeded and @i contains valid data.
1285  */
1286 /**
1287  * gst_buffer_map_range:
1288  * @buffer: a #GstBuffer.
1289  * @idx: an index
1290  * @length: a length
1291  * @info: (out): info about the mapping
1292  * @flags: flags for the mapping
1293  *
1294  * This function fills @info with the #GstMapInfo of @length merged memory blocks
1295  * starting at @idx in @buffer. When @length is -1, all memory blocks starting
1296  * from @idx are merged and mapped.
1297  *
1298  * @flags describe the desired access of the memory. When @flags is
1299  * #GST_MAP_WRITE, @buffer should be writable (as returned from
1300  * gst_buffer_is_writable()).
1301  *
1302  * When @buffer is writable but the memory isn't, a writable copy will
1303  * automatically be created and returned. The readonly copy of the buffer memory
1304  * will then also be replaced with this writable copy.
1305  *
1306  * The memory in @info should be unmapped with gst_buffer_unmap() after usage.
1307  *
1308  * Returns: %TRUE if the map succeeded and @info contains valid
1309  * data.
1310  */
1311 gboolean
1312 gst_buffer_map_range (GstBuffer * buffer, guint idx, gint length,
1313     GstMapInfo * info, GstMapFlags flags)
1314 {
1315   GstMemory *mem, *nmem;
1316   gboolean write, writable;
1317   gsize len;
1318
1319   g_return_val_if_fail (GST_IS_BUFFER (buffer), FALSE);
1320   g_return_val_if_fail (info != NULL, FALSE);
1321   len = GST_BUFFER_MEM_LEN (buffer);
1322   g_return_val_if_fail ((len == 0 && idx == 0 && length == -1) ||
1323       (length == -1 && idx < len) || (length > 0
1324           && length + idx <= len), FALSE);
1325
1326   GST_CAT_LOG (GST_CAT_BUFFER, "buffer %p, idx %u, length %d, flags %04x",
1327       buffer, idx, length, flags);
1328
1329   write = (flags & GST_MAP_WRITE) != 0;
1330   writable = gst_buffer_is_writable (buffer);
1331
1332   /* check if we can write when asked for write access */
1333   if (G_UNLIKELY (write && !writable))
1334     goto not_writable;
1335
1336   if (length == -1)
1337     length = len - idx;
1338
1339   mem = _get_merged_memory (buffer, idx, length);
1340   if (G_UNLIKELY (mem == NULL))
1341     goto no_memory;
1342
1343   /* now try to map */
1344   nmem = gst_memory_make_mapped (mem, info, flags);
1345   if (G_UNLIKELY (nmem == NULL))
1346     goto cannot_map;
1347
1348   /* if we merged or when the map returned a different memory, we try to replace
1349    * the memory in the buffer */
1350   if (G_UNLIKELY (length > 1 || nmem != mem)) {
1351     /* if the buffer is writable, replace the memory */
1352     if (writable) {
1353       _replace_memory (buffer, len, idx, length, gst_memory_ref (nmem));
1354     } else {
1355       if (len > 1) {
1356         GST_CAT_DEBUG (GST_CAT_PERFORMANCE,
1357             "temporary mapping for memory %p in buffer %p", nmem, buffer);
1358       }
1359     }
1360   }
1361   return TRUE;
1362
1363   /* ERROR */
1364 not_writable:
1365   {
1366     GST_WARNING_OBJECT (buffer, "write map requested on non-writable buffer");
1367     g_critical ("write map requested on non-writable buffer");
1368     return FALSE;
1369   }
1370 no_memory:
1371   {
1372     /* empty buffer, we need to return NULL */
1373     GST_DEBUG_OBJECT (buffer, "can't get buffer memory");
1374     info->memory = NULL;
1375     info->data = NULL;
1376     info->size = 0;
1377     info->maxsize = 0;
1378     return TRUE;
1379   }
1380 cannot_map:
1381   {
1382     GST_DEBUG_OBJECT (buffer, "cannot map memory");
1383     return FALSE;
1384   }
1385 }
1386
1387 /**
1388  * gst_buffer_unmap:
1389  * @buffer: a #GstBuffer.
1390  * @info: a #GstMapInfo
1391  *
1392  * Release the memory previously mapped with gst_buffer_map().
1393  */
1394 void
1395 gst_buffer_unmap (GstBuffer * buffer, GstMapInfo * info)
1396 {
1397   g_return_if_fail (GST_IS_BUFFER (buffer));
1398   g_return_if_fail (info != NULL);
1399
1400   /* we need to check for NULL, it is possible that we tried to map a buffer
1401    * without memory and we should be able to unmap that fine */
1402   if (G_LIKELY (info->memory)) {
1403     gst_memory_unmap (info->memory, info);
1404     gst_memory_unref (info->memory);
1405   }
1406 }
1407
1408 /**
1409  * gst_buffer_fill:
1410  * @buffer: a #GstBuffer.
1411  * @offset: the offset to fill
1412  * @src: the source address
1413  * @size: the size to fill
1414  *
1415  * Copy @size bytes from @src to @buffer at @offset.
1416  *
1417  * Returns: The amount of bytes copied. This value can be lower than @size
1418  *    when @buffer did not contain enough data.
1419  */
1420 gsize
1421 gst_buffer_fill (GstBuffer * buffer, gsize offset, gconstpointer src,
1422     gsize size)
1423 {
1424   gsize i, len, left;
1425   const guint8 *ptr = src;
1426
1427   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1428   g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1429   g_return_val_if_fail (src != NULL, 0);
1430
1431   GST_CAT_LOG (GST_CAT_BUFFER,
1432       "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1433       offset, size);
1434
1435   len = GST_BUFFER_MEM_LEN (buffer);
1436   left = size;
1437
1438   for (i = 0; i < len && left > 0; i++) {
1439     GstMapInfo info;
1440     gsize tocopy;
1441     GstMemory *mem;
1442
1443     mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1444     if (info.size > offset) {
1445       /* we have enough */
1446       tocopy = MIN (info.size - offset, left);
1447       memcpy ((guint8 *) info.data + offset, ptr, tocopy);
1448       left -= tocopy;
1449       ptr += tocopy;
1450       offset = 0;
1451     } else {
1452       /* offset past buffer, skip */
1453       offset -= info.size;
1454     }
1455     gst_memory_unmap (mem, &info);
1456   }
1457   return size - left;
1458 }
1459
1460 /**
1461  * gst_buffer_extract:
1462  * @buffer: a #GstBuffer.
1463  * @offset: the offset to extract
1464  * @dest: the destination address
1465  * @size: the size to extract
1466  *
1467  * Copy @size bytes starting from @offset in @buffer to @dest.
1468  *
1469  * Returns: The amount of bytes extracted. This value can be lower than @size
1470  *    when @buffer did not contain enough data.
1471  */
1472 gsize
1473 gst_buffer_extract (GstBuffer * buffer, gsize offset, gpointer dest, gsize size)
1474 {
1475   gsize i, len, left;
1476   guint8 *ptr = dest;
1477
1478   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1479   g_return_val_if_fail (dest != NULL, 0);
1480
1481   GST_CAT_LOG (GST_CAT_BUFFER,
1482       "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1483       offset, size);
1484
1485   len = GST_BUFFER_MEM_LEN (buffer);
1486   left = size;
1487
1488   for (i = 0; i < len && left > 0; i++) {
1489     GstMapInfo info;
1490     gsize tocopy;
1491     GstMemory *mem;
1492
1493     mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1494     if (info.size > offset) {
1495       /* we have enough */
1496       tocopy = MIN (info.size - offset, left);
1497       memcpy (ptr, (guint8 *) info.data + offset, tocopy);
1498       left -= tocopy;
1499       ptr += tocopy;
1500       offset = 0;
1501     } else {
1502       /* offset past buffer, skip */
1503       offset -= info.size;
1504     }
1505     gst_memory_unmap (mem, &info);
1506   }
1507   return size - left;
1508 }
1509
1510 /**
1511  * gst_buffer_memcmp:
1512  * @buffer: a #GstBuffer.
1513  * @offset: the offset in @buffer
1514  * @mem: the memory to compare
1515  * @size: the size to compare
1516  *
1517  * Compare @size bytes starting from @offset in @buffer with the memory in @mem.
1518  *
1519  * Returns: 0 if the memory is equal.
1520  */
1521 gint
1522 gst_buffer_memcmp (GstBuffer * buffer, gsize offset, gconstpointer mem,
1523     gsize size)
1524 {
1525   gsize i, len;
1526   const guint8 *ptr = mem;
1527   gint res = 0;
1528
1529   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1530   g_return_val_if_fail (mem != NULL, 0);
1531
1532   GST_CAT_LOG (GST_CAT_BUFFER,
1533       "buffer %p, offset %" G_GSIZE_FORMAT ", size %" G_GSIZE_FORMAT, buffer,
1534       offset, size);
1535
1536   len = GST_BUFFER_MEM_LEN (buffer);
1537
1538   for (i = 0; i < len && size > 0 && res == 0; i++) {
1539     GstMapInfo info;
1540     gsize tocmp;
1541     GstMemory *mem;
1542
1543     mem = _get_mapped (buffer, i, &info, GST_MAP_READ);
1544     if (info.size > offset) {
1545       /* we have enough */
1546       tocmp = MIN (info.size - offset, size);
1547       res = memcmp (ptr, (guint8 *) info.data + offset, tocmp);
1548       size -= tocmp;
1549       ptr += tocmp;
1550       offset = 0;
1551     } else {
1552       /* offset past buffer, skip */
1553       offset -= info.size;
1554     }
1555     gst_memory_unmap (mem, &info);
1556   }
1557   return res;
1558 }
1559
1560 /**
1561  * gst_buffer_memset:
1562  * @buffer: a #GstBuffer.
1563  * @offset: the offset in @buffer
1564  * @val: the value to set
1565  * @size: the size to set
1566  *
1567  * Fill @buf with @size bytes with @val starting from @offset.
1568  *
1569  * Returns: The amount of bytes filled. This value can be lower than @size
1570  *    when @buffer did not contain enough data.
1571  */
1572 gsize
1573 gst_buffer_memset (GstBuffer * buffer, gsize offset, guint8 val, gsize size)
1574 {
1575   gsize i, len, left;
1576
1577   g_return_val_if_fail (GST_IS_BUFFER (buffer), 0);
1578   g_return_val_if_fail (gst_buffer_is_writable (buffer), 0);
1579
1580   GST_CAT_LOG (GST_CAT_BUFFER,
1581       "buffer %p, offset %" G_GSIZE_FORMAT ", val %02x, size %" G_GSIZE_FORMAT,
1582       buffer, offset, val, size);
1583
1584   len = GST_BUFFER_MEM_LEN (buffer);
1585   left = size;
1586
1587   for (i = 0; i < len && left > 0; i++) {
1588     GstMapInfo info;
1589     gsize toset;
1590     GstMemory *mem;
1591
1592     mem = _get_mapped (buffer, i, &info, GST_MAP_WRITE);
1593     if (info.size > offset) {
1594       /* we have enough */
1595       toset = MIN (info.size - offset, left);
1596       memset ((guint8 *) info.data + offset, val, toset);
1597       left -= toset;
1598       offset = 0;
1599     } else {
1600       /* offset past buffer, skip */
1601       offset -= info.size;
1602     }
1603     gst_memory_unmap (mem, &info);
1604   }
1605   return size - left;
1606 }
1607
1608 /**
1609  * gst_buffer_copy_region:
1610  * @parent: a #GstBuffer.
1611  * @flags: the #GstBufferCopyFlags
1612  * @offset: the offset into parent #GstBuffer at which the new sub-buffer 
1613  *          begins.
1614  * @size: the size of the new #GstBuffer sub-buffer, in bytes.
1615  *
1616  * Creates a sub-buffer from @parent at @offset and @size.
1617  * This sub-buffer uses the actual memory space of the parent buffer.
1618  * This function will copy the offset and timestamp fields when the
1619  * offset is 0. If not, they will be set to #GST_CLOCK_TIME_NONE and 
1620  * #GST_BUFFER_OFFSET_NONE.
1621  * If @offset equals 0 and @size equals the total size of @buffer, the
1622  * duration and offset end fields are also copied. If not they will be set
1623  * to #GST_CLOCK_TIME_NONE and #GST_BUFFER_OFFSET_NONE.
1624  *
1625  * MT safe.
1626  *
1627  * Returns: (transfer full): the new #GstBuffer or NULL if the arguments were
1628  *     invalid.
1629  */
1630 GstBuffer *
1631 gst_buffer_copy_region (GstBuffer * buffer, GstBufferCopyFlags flags,
1632     gsize offset, gsize size)
1633 {
1634   GstBuffer *copy;
1635
1636   g_return_val_if_fail (buffer != NULL, NULL);
1637
1638   /* create the new buffer */
1639   copy = gst_buffer_new ();
1640
1641   GST_CAT_LOG (GST_CAT_BUFFER, "new region copy %p of %p %" G_GSIZE_FORMAT
1642       "-%" G_GSIZE_FORMAT, copy, buffer, offset, size);
1643
1644   gst_buffer_copy_into (copy, buffer, flags, offset, size);
1645
1646   return copy;
1647 }
1648
1649 /**
1650  * gst_buffer_append:
1651  * @buf1: (transfer full): the first source #GstBuffer to append.
1652  * @buf2: (transfer full): the second source #GstBuffer to append.
1653  *
1654  * Append all the memory from @buf2 to @buf1. The result buffer will contain a
1655  * concatenation of the memory of @buf1 and @buf2.
1656  *
1657  * Returns: (transfer full): the new #GstBuffer that contains the memory
1658  *     of the two source buffers.
1659  */
1660 /**
1661  * gst_buffer_append_region:
1662  * @buf1: (transfer full): the first source #GstBuffer to append.
1663  * @buf2: (transfer full): the second source #GstBuffer to append.
1664  * @offset: the offset in @buf2
1665  * @size: the size or -1 of @buf2
1666  *
1667  * Append @size bytes at @offset from @buf2 to @buf1. The result buffer will
1668  * contain a concatenation of the memory of @buf1 and the requested region of
1669  * @buf2.
1670  *
1671  * Returns: (transfer full): the new #GstBuffer that contains the memory
1672  *     of the two source buffers.
1673  */
1674 GstBuffer *
1675 gst_buffer_append_region (GstBuffer * buf1, GstBuffer * buf2, gssize offset,
1676     gssize size)
1677 {
1678   gsize i, len;
1679
1680   g_return_val_if_fail (GST_IS_BUFFER (buf1), NULL);
1681   g_return_val_if_fail (GST_IS_BUFFER (buf2), NULL);
1682
1683   buf1 = gst_buffer_make_writable (buf1);
1684   buf2 = gst_buffer_make_writable (buf2);
1685
1686   gst_buffer_resize (buf2, offset, size);
1687
1688   len = GST_BUFFER_MEM_LEN (buf2);
1689   for (i = 0; i < len; i++) {
1690     GstMemory *mem;
1691
1692     mem = GST_BUFFER_MEM_PTR (buf2, i);
1693     GST_BUFFER_MEM_PTR (buf2, i) = NULL;
1694     _memory_add (buf1, -1, mem, FALSE);
1695   }
1696
1697   GST_BUFFER_MEM_LEN (buf2) = 0;
1698   gst_buffer_unref (buf2);
1699
1700   return buf1;
1701 }
1702
1703 /**
1704  * gst_buffer_get_meta:
1705  * @buffer: a #GstBuffer
1706  * @api: the #GType of an API
1707  *
1708  * Get the metadata for @api on buffer. When there is no such
1709  * metadata, NULL is returned.
1710  *
1711  * Returns: (transfer none): the metadata for @api on @buffer.
1712  */
1713 GstMeta *
1714 gst_buffer_get_meta (GstBuffer * buffer, GType api)
1715 {
1716   GstMetaItem *item;
1717   GstMeta *result = NULL;
1718
1719   g_return_val_if_fail (buffer != NULL, NULL);
1720   g_return_val_if_fail (api != 0, NULL);
1721
1722   /* find GstMeta of the requested API */
1723   for (item = GST_BUFFER_META (buffer); item; item = item->next) {
1724     GstMeta *meta = &item->meta;
1725     if (meta->info->api == api) {
1726       result = meta;
1727       break;
1728     }
1729   }
1730   return result;
1731 }
1732
1733 /**
1734  * gst_buffer_add_meta:
1735  * @buffer: a #GstBuffer
1736  * @info: a #GstMetaInfo
1737  * @params: params for @info
1738  *
1739  * Add metadata for @info to @buffer using the parameters in @params.
1740  *
1741  * Returns: (transfer none): the metadata for the api in @info on @buffer.
1742  */
1743 GstMeta *
1744 gst_buffer_add_meta (GstBuffer * buffer, const GstMetaInfo * info,
1745     gpointer params)
1746 {
1747   GstMetaItem *item;
1748   GstMeta *result = NULL;
1749   gsize size;
1750
1751   g_return_val_if_fail (buffer != NULL, NULL);
1752   g_return_val_if_fail (info != NULL, NULL);
1753   g_return_val_if_fail (gst_buffer_is_writable (buffer), NULL);
1754
1755   /* create a new slice */
1756   size = ITEM_SIZE (info);
1757   item = g_slice_alloc (size);
1758   result = &item->meta;
1759   result->info = info;
1760   result->flags = GST_META_FLAG_NONE;
1761
1762   GST_CAT_DEBUG (GST_CAT_BUFFER,
1763       "alloc metadata %p (%s) of size %" G_GSIZE_FORMAT, result,
1764       g_type_name (info->type), info->size);
1765
1766   /* call the init_func when needed */
1767   if (info->init_func)
1768     if (!info->init_func (result, params, buffer))
1769       goto init_failed;
1770
1771   /* and add to the list of metadata */
1772   item->next = GST_BUFFER_META (buffer);
1773   GST_BUFFER_META (buffer) = item;
1774
1775   return result;
1776
1777 init_failed:
1778   {
1779     g_slice_free1 (size, item);
1780     return NULL;
1781   }
1782 }
1783
1784 /**
1785  * gst_buffer_remove_meta:
1786  * @buffer: a #GstBuffer
1787  * @meta: a #GstMeta
1788  *
1789  * Remove the metadata for @meta on @buffer.
1790  *
1791  * Returns: %TRUE if the metadata existed and was removed, %FALSE if no such
1792  * metadata was on @buffer.
1793  */
1794 gboolean
1795 gst_buffer_remove_meta (GstBuffer * buffer, GstMeta * meta)
1796 {
1797   GstMetaItem *walk, *prev;
1798
1799   g_return_val_if_fail (buffer != NULL, FALSE);
1800   g_return_val_if_fail (meta != NULL, FALSE);
1801   g_return_val_if_fail (gst_buffer_is_writable (buffer), FALSE);
1802   g_return_val_if_fail (!GST_META_FLAG_IS_SET (meta, GST_META_FLAG_LOCKED),
1803       FALSE);
1804
1805   /* find the metadata and delete */
1806   prev = GST_BUFFER_META (buffer);
1807   for (walk = prev; walk; walk = walk->next) {
1808     GstMeta *m = &walk->meta;
1809     if (m == meta) {
1810       const GstMetaInfo *info = meta->info;
1811
1812       /* remove from list */
1813       if (GST_BUFFER_META (buffer) == walk)
1814         GST_BUFFER_META (buffer) = walk->next;
1815       else
1816         prev->next = walk->next;
1817       /* call free_func if any */
1818       if (info->free_func)
1819         info->free_func (m, buffer);
1820
1821       /* and free the slice */
1822       g_slice_free1 (ITEM_SIZE (info), walk);
1823       break;
1824     }
1825     prev = walk;
1826   }
1827   return walk != NULL;
1828 }
1829
1830 /**
1831  * gst_buffer_iterate_meta:
1832  * @buffer: a #GstBuffer
1833  * @state: an opaque state pointer
1834  *
1835  * Retrieve the next #GstMeta after @current. If @state points
1836  * to %NULL, the first metadata is returned.
1837  *
1838  * @state will be updated with an opage state pointer 
1839  *
1840  * Returns: (transfer none): The next #GstMeta or %NULL when there are
1841  * no more items.
1842  */
1843 GstMeta *
1844 gst_buffer_iterate_meta (GstBuffer * buffer, gpointer * state)
1845 {
1846   GstMetaItem **meta;
1847
1848   g_return_val_if_fail (buffer != NULL, NULL);
1849   g_return_val_if_fail (state != NULL, NULL);
1850
1851   meta = (GstMetaItem **) state;
1852   if (*meta == NULL)
1853     /* state NULL, move to first item */
1854     *meta = GST_BUFFER_META (buffer);
1855   else
1856     /* state !NULL, move to next item in list */
1857     *meta = (*meta)->next;
1858
1859   if (*meta)
1860     return &(*meta)->meta;
1861   else
1862     return NULL;
1863 }
1864
1865 /**
1866  * gst_buffer_foreach_meta:
1867  * @buffer: a #GstBuffer
1868  * @func: (scope call): a #GstBufferForeachMetaFunc to call
1869  * @user_data: (closure): user data passed to @func
1870  *
1871  * Call @func with @user_data for each meta in @buffer.
1872  *
1873  * @func can modify the passed meta pointer or its contents. The return value
1874  * of @func define if this function returns or if the remaining metadata items
1875  * in the buffer should be skipped.
1876  */
1877 void
1878 gst_buffer_foreach_meta (GstBuffer * buffer, GstBufferForeachMetaFunc func,
1879     gpointer user_data)
1880 {
1881   GstMetaItem *walk, *prev, *next;
1882
1883   g_return_if_fail (buffer != NULL);
1884   g_return_if_fail (func != NULL);
1885
1886   /* find the metadata and delete */
1887   prev = GST_BUFFER_META (buffer);
1888   for (walk = prev; walk; walk = next) {
1889     GstMeta *m, *new;
1890     gboolean res;
1891
1892     m = new = &walk->meta;
1893     next = walk->next;
1894
1895     res = func (buffer, &new, user_data);
1896
1897     if (new == NULL) {
1898       const GstMetaInfo *info = m->info;
1899
1900       GST_CAT_DEBUG (GST_CAT_BUFFER, "remove metadata %p (%s)", m,
1901           g_type_name (info->type));
1902
1903       g_return_if_fail (gst_buffer_is_writable (buffer));
1904       g_return_if_fail (!GST_META_FLAG_IS_SET (m, GST_META_FLAG_LOCKED));
1905
1906       /* remove from list */
1907       if (GST_BUFFER_META (buffer) == walk)
1908         GST_BUFFER_META (buffer) = next;
1909       else
1910         prev->next = next;
1911
1912       /* call free_func if any */
1913       if (info->free_func)
1914         info->free_func (m, buffer);
1915
1916       /* and free the slice */
1917       g_slice_free1 (ITEM_SIZE (info), walk);
1918     }
1919     if (!res)
1920       break;
1921   }
1922 }