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