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