gst/gstbuffer.c: gst_buffer_make_metadata_writable() should maintain the buffer flags...
[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
27  *
28  * Buffers are the basic unit of data transfer in GStreamer.  The #GstBuffer type
29  * provides all the state necessary to define a region of memory as part of a
30  * stream.  Sub-buffers are also supported, allowing a smaller region of a
31  * buffer to become its own buffer, with mechanisms in place to ensure that
32  * 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 set the size of the
36  * buffer data.  The following example creates a buffer that can hold a given
37  * video frame 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  *   gint size, width, height, bpp;
43  *   ...
44  *   size = width * height * bpp;
45  *   buffer = gst_buffer_new ();
46  *   GST_BUFFER_SIZE (buffer) = size;
47  *   GST_BUFFER_MALLOCDATA (buffer) = g_malloc (size);
48  *   GST_BUFFER_DATA (buffer) = GST_BUFFER_MALLOCDATA (buffer);
49  *   ...
50  *   </programlisting>
51  * </example>
52  *
53  * Alternatively, use gst_buffer_new_and_alloc()
54  * to create a buffer with preallocated data of a given size.
55  *
56  * If an element knows what pad you will push the buffer out on, it should use
57  * gst_pad_alloc_buffer() instead to create a buffer.  This allows downstream
58  * elements to provide special buffers to write in, like hardware buffers.
59  *
60  * A buffer has a pointer to a #GstCaps describing the media type of the data
61  * in the buffer. Attach caps to the buffer with gst_buffer_set_caps(); this
62  * is typically done before pushing out a buffer using gst_pad_push() so that
63  * the downstream element knows the type of the buffer.
64  * 
65  * A buffer will usually have a timestamp, and a duration, but neither of these
66  * are guaranteed (they may be set to #GST_CLOCK_TIME_NONE). Whenever a 
67  * meaningful value can be given for these, they should be set. The timestamp 
68  * and duration are measured in nanoseconds (they are #GstClockTime values). 
69  * 
70  * A buffer can also have one or both of a start and an end offset. These are
71  * media-type specific. For video buffers, the start offset will generally be
72  * the frame number. For audio buffers, it will be the number of samples 
73  * produced so far. For compressed data, it could be the byte offset in a 
74  * source or destination file. Likewise, the end offset will be the offset of
75  * the end of the buffer. These can only be meaningfully interpreted if you
76  * know the media type of the buffer (the #GstCaps set on it). Either or both
77  * can be set to #GST_BUFFER_OFFSET_NONE.
78  *
79  * gst_buffer_ref() is used to increase the refcount of a buffer. This must be
80  * done when you want to keep a handle to the buffer after pushing it to the
81  * next element.
82  *
83  * To efficiently create a smaller buffer out of an existing one, you can
84  * use gst_buffer_create_sub().
85  *
86  * If a plug-in wants to modify the buffer data in-place, it should first obtain
87  * a buffer that is safe to modify by using gst_buffer_make_writable().  This
88  * function is optimized so that a copy will only be made when it is necessary.
89  *
90  * A plugin that only wishes to modify the metadata of a buffer, such as the offset,
91  * timestamp or caps, should use gst_buffer_make_metadata_writable(), which will
92  * create a subbuffer of the original buffer to ensure the caller has sole ownership,
93  * and not copy the buffer data.
94  *
95  * Several flags of the buffer can be set and unset with the
96  * GST_BUFFER_FLAG_SET() and GST_BUFFER_FLAG_UNSET() macros. Use
97  * GST_BUFFER_FLAG_IS_SET() to test if a certain #GstBufferFlag is set.
98  *
99  * Buffers can be efficiently merged into a larger buffer with
100  * gst_buffer_merge() and gst_buffer_span() if the gst_buffer_is_span_fast()
101  * function returns TRUE.
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 data pointed to by GST_BUFFER_MALLOCDATA() will
108  * also be freed.
109  *
110  * Last reviewed on November 23th, 2005 (0.9.5)
111  */
112 #include "gst_private.h"
113
114 #include "gstbuffer.h"
115 #include "gstinfo.h"
116 #include "gstutils.h"
117 #include "gstminiobject.h"
118
119
120 static void gst_buffer_init (GTypeInstance * instance, gpointer g_class);
121 static void gst_buffer_class_init (gpointer g_class, gpointer class_data);
122 static void gst_buffer_finalize (GstBuffer * buffer);
123 static GstBuffer *_gst_buffer_copy (GstBuffer * buffer);
124
125
126 void
127 _gst_buffer_initialize (void)
128 {
129   gpointer ptr;
130
131   gst_buffer_get_type ();
132
133   /* the GstMiniObject types need to be class_ref'd once before it can be
134    * done from multiple threads;
135    * see http://bugzilla.gnome.org/show_bug.cgi?id=304551 */
136   ptr = g_type_class_ref (GST_TYPE_BUFFER);
137   g_type_class_unref (ptr);
138 }
139
140 GType
141 gst_buffer_get_type (void)
142 {
143   static GType _gst_buffer_type;
144
145   if (G_UNLIKELY (_gst_buffer_type == 0)) {
146     static const GTypeInfo buffer_info = {
147       sizeof (GstBufferClass),
148       NULL,
149       NULL,
150       gst_buffer_class_init,
151       NULL,
152       NULL,
153       sizeof (GstBuffer),
154       0,
155       gst_buffer_init,
156       NULL
157     };
158
159     _gst_buffer_type = g_type_register_static (GST_TYPE_MINI_OBJECT,
160         "GstBuffer", &buffer_info, 0);
161   }
162   return _gst_buffer_type;
163 }
164
165 static void
166 gst_buffer_class_init (gpointer g_class, gpointer class_data)
167 {
168   GstBufferClass *buffer_class = GST_BUFFER_CLASS (g_class);
169
170   buffer_class->mini_object_class.copy =
171       (GstMiniObjectCopyFunction) _gst_buffer_copy;
172   buffer_class->mini_object_class.finalize =
173       (GstMiniObjectFinalizeFunction) gst_buffer_finalize;
174
175 }
176
177 static void
178 gst_buffer_finalize (GstBuffer * buffer)
179 {
180   g_return_if_fail (buffer != NULL);
181
182   GST_CAT_LOG (GST_CAT_BUFFER, "finalize %p", buffer);
183
184   /* free our data */
185   if (buffer->malloc_data) {
186     g_free (buffer->malloc_data);
187   }
188
189   gst_caps_replace (&GST_BUFFER_CAPS (buffer), NULL);
190 }
191
192 static GstBuffer *
193 _gst_buffer_copy (GstBuffer * buffer)
194 {
195   GstBuffer *copy;
196   guint mask;
197
198   g_return_val_if_fail (buffer != NULL, NULL);
199
200   /* create a fresh new buffer */
201   copy = gst_buffer_new ();
202
203   GST_CAT_LOG (GST_CAT_BUFFER, "copy %p to %p", buffer, copy);
204
205   /* copy relevant flags */
206   mask = GST_BUFFER_FLAG_PREROLL | GST_BUFFER_FLAG_IN_CAPS |
207       GST_BUFFER_FLAG_DELTA_UNIT | GST_BUFFER_FLAG_DISCONT |
208       GST_BUFFER_FLAG_GAP;
209   GST_MINI_OBJECT (copy)->flags |= GST_MINI_OBJECT (buffer)->flags & mask;
210
211   /* we simply copy everything from our parent */
212   copy->data = g_memdup (buffer->data, buffer->size);
213   /* make sure it gets freed (even if the parent is subclassed, we return a
214      normal buffer */
215   copy->malloc_data = copy->data;
216
217   copy->size = buffer->size;
218
219   GST_BUFFER_TIMESTAMP (copy) = GST_BUFFER_TIMESTAMP (buffer);
220   GST_BUFFER_DURATION (copy) = GST_BUFFER_DURATION (buffer);
221   GST_BUFFER_OFFSET (copy) = GST_BUFFER_OFFSET (buffer);
222   GST_BUFFER_OFFSET_END (copy) = GST_BUFFER_OFFSET_END (buffer);
223
224   if (GST_BUFFER_CAPS (buffer))
225     GST_BUFFER_CAPS (copy) = gst_caps_ref (GST_BUFFER_CAPS (buffer));
226   else
227     GST_BUFFER_CAPS (copy) = NULL;
228
229   return copy;
230 }
231
232 static void
233 gst_buffer_init (GTypeInstance * instance, gpointer g_class)
234 {
235   GstBuffer *buffer;
236
237   buffer = (GstBuffer *) instance;
238
239   GST_CAT_LOG (GST_CAT_BUFFER, "init %p", buffer);
240
241   GST_BUFFER_TIMESTAMP (buffer) = GST_CLOCK_TIME_NONE;
242   GST_BUFFER_DURATION (buffer) = GST_CLOCK_TIME_NONE;
243   GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
244   GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
245 }
246
247 /**
248  * gst_buffer_new:
249  *
250  * Creates a newly allocated buffer without any data.
251  *
252  * MT safe.
253  * Returns: the new #GstBuffer.
254  */
255 GstBuffer *
256 gst_buffer_new (void)
257 {
258   GstBuffer *newbuf;
259
260   newbuf = (GstBuffer *) gst_mini_object_new (GST_TYPE_BUFFER);
261
262   GST_CAT_LOG (GST_CAT_BUFFER, "new %p", newbuf);
263
264   return newbuf;
265 }
266
267 /**
268  * gst_buffer_new_and_alloc:
269  * @size: the size of the new buffer's data.
270  *
271  * Creates a newly allocated buffer with data of the given size.
272  * The buffer memory is not cleared.
273  *
274  * MT safe.
275  * Returns: the new #GstBuffer.
276  */
277 GstBuffer *
278 gst_buffer_new_and_alloc (guint size)
279 {
280   GstBuffer *newbuf;
281
282   newbuf = gst_buffer_new ();
283
284   newbuf->malloc_data = g_malloc (size);
285   GST_BUFFER_DATA (newbuf) = newbuf->malloc_data;
286   GST_BUFFER_SIZE (newbuf) = size;
287
288   GST_CAT_LOG (GST_CAT_BUFFER, "new %p of size %d", newbuf, size);
289
290   return newbuf;
291 }
292
293 /**
294  * gst_buffer_get_caps:
295  * @buffer: a #GstBuffer.
296  *
297  * Gets the media type of the buffer. This can be NULL if there
298  * is no media type attached to this buffer.
299  *
300  * Returns: a reference to the #GstCaps. unref after usage.
301  * Returns NULL if there were no caps on this buffer.
302  */
303 /* FIXME can we make this threadsafe without a lock on the buffer?
304  * We can use compare and swap and atomic reads. */
305 GstCaps *
306 gst_buffer_get_caps (GstBuffer * buffer)
307 {
308   GstCaps *ret;
309
310   g_return_val_if_fail (buffer != NULL, NULL);
311
312   ret = GST_BUFFER_CAPS (buffer);
313
314   if (ret)
315     gst_caps_ref (ret);
316
317   return ret;
318 }
319
320 /**
321  * gst_buffer_set_caps:
322  * @buffer: a #GstBuffer.
323  * @caps: a #GstCaps.
324  *
325  * Sets the media type on the buffer. The refcount of the caps will
326  * be increased and any previous caps on the buffer will be
327  * unreffed.
328  */
329 /* FIXME can we make this threadsafe without a lock on the buffer?
330  * We can use compare and swap and atomic reads. Another idea is to
331  * not attach the caps to the buffer but use an event to signal a caps
332  * change. */
333 void
334 gst_buffer_set_caps (GstBuffer * buffer, GstCaps * caps)
335 {
336   g_return_if_fail (buffer != NULL);
337
338   gst_caps_replace (&GST_BUFFER_CAPS (buffer), caps);
339 }
340
341 /**
342  * gst_buffer_is_metadata_writable:
343  * @buf: a #GstBuffer
344  *
345  * Similar to gst_buffer_is_writable, but this only ensures that the
346  * refcount of the buffer is 1, indicating that the caller is the sole
347  * owner and can change the buffer metadata, such as caps and timestamps.
348  *
349  * Returns: TRUE if the metadata is writable.
350  */
351 gboolean
352 gst_buffer_is_metadata_writable (GstBuffer * buf)
353 {
354   return (GST_MINI_OBJECT_REFCOUNT_VALUE (GST_MINI_OBJECT (buf)) == 1);
355 }
356
357 /**
358  * gst_buffer_make_metadata_writable:
359  * @buf: a #GstBuffer
360  *
361  * Similar to gst_buffer_make_writable, but does not ensure that the buffer
362  * data array is writable. Instead, this just ensures that the returned buffer
363  * is solely owned by the caller, by creating a subbuffer of the original
364  * buffer if necessary.
365  * 
366  * After calling this function, @buf should not be referenced anymore.
367  *
368  * Returns: A new #GstBuffer with writable metadata.
369  */
370 GstBuffer *
371 gst_buffer_make_metadata_writable (GstBuffer * buf)
372 {
373   GstBuffer *ret;
374
375   if (gst_buffer_is_metadata_writable (buf)) {
376     ret = buf;
377   } else {
378     ret = gst_buffer_create_sub (buf, 0, GST_BUFFER_SIZE (buf));
379     GST_BUFFER_FLAGS (ret) = GST_BUFFER_FLAGS (buf);
380     GST_BUFFER_FLAG_UNSET (ret, GST_BUFFER_FLAG_IN_CAPS);
381     gst_buffer_unref (buf);
382   }
383
384   return ret;
385 }
386
387 typedef struct _GstSubBuffer GstSubBuffer;
388 typedef struct _GstSubBufferClass GstSubBufferClass;
389
390 #define GST_TYPE_SUBBUFFER                         (gst_subbuffer_get_type())
391
392 #define GST_IS_SUBBUFFER(obj)  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_SUBBUFFER))
393 #define GST_SUBBUFFER(obj)     (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_SUBBUFFER, GstSubBuffer))
394
395 struct _GstSubBuffer
396 {
397   GstBuffer buffer;
398
399   GstBuffer *parent;
400 };
401
402 struct _GstSubBufferClass
403 {
404   GstBufferClass buffer_class;
405 };
406
407 static GstBufferClass *sub_parent_class;
408
409 static void gst_subbuffer_init (GTypeInstance * instance, gpointer g_class);
410 static void gst_subbuffer_class_init (gpointer g_class, gpointer class_data);
411 static void gst_subbuffer_finalize (GstSubBuffer * buffer);
412
413 static GType
414 gst_subbuffer_get_type (void)
415 {
416   static GType _gst_subbuffer_type = 0;
417
418   if (G_UNLIKELY (_gst_subbuffer_type == 0)) {
419     static const GTypeInfo subbuffer_info = {
420       sizeof (GstSubBufferClass),
421       NULL,
422       NULL,
423       gst_subbuffer_class_init,
424       NULL,
425       NULL,
426       sizeof (GstSubBuffer),
427       0,
428       gst_subbuffer_init,
429       NULL
430     };
431
432     _gst_subbuffer_type = g_type_register_static (GST_TYPE_BUFFER,
433         "GstSubBuffer", &subbuffer_info, 0);
434   }
435   return _gst_subbuffer_type;
436 }
437
438 static void
439 gst_subbuffer_class_init (gpointer g_class, gpointer class_data)
440 {
441   GstBufferClass *buffer_class = GST_BUFFER_CLASS (g_class);
442
443   sub_parent_class = g_type_class_peek_parent (g_class);
444
445   buffer_class->mini_object_class.finalize =
446       (GstMiniObjectFinalizeFunction) gst_subbuffer_finalize;
447 }
448
449 static void
450 gst_subbuffer_finalize (GstSubBuffer * buffer)
451 {
452   gst_buffer_unref (buffer->parent);
453
454   GST_MINI_OBJECT_CLASS (sub_parent_class)->finalize (GST_MINI_OBJECT (buffer));
455 }
456
457 static void
458 gst_subbuffer_init (GTypeInstance * instance, gpointer g_class)
459 {
460   GST_BUFFER_FLAG_SET (GST_BUFFER_CAST (instance), GST_BUFFER_FLAG_READONLY);
461 }
462
463 /**
464  * gst_buffer_create_sub:
465  * @parent: a #GstBuffer.
466  * @offset: the offset into parent #GstBuffer at which the new sub-buffer 
467  *          begins.
468  * @size: the size of the new #GstBuffer sub-buffer, in bytes (with size > 0).
469  *
470  * Creates a sub-buffer from @parent at @offset and @size.
471  * This sub-buffer uses the actual memory space of the parent buffer.
472  * This function will copy the offset and timestamp fields when the
473  * offset is 0, else they are set to #GST_CLOCK_TIME_NONE/#GST_BUFFER_OFFSET_NONE.
474  * The duration field of the new buffer is set to #GST_CLOCK_TIME_NONE.
475  *
476  * MT safe.
477  * Returns: the new #GstBuffer.
478  * Returns NULL if the arguments were invalid.
479  */
480 GstBuffer *
481 gst_buffer_create_sub (GstBuffer * buffer, guint offset, guint size)
482 {
483   GstSubBuffer *subbuffer;
484   GstBuffer *parent;
485
486   g_return_val_if_fail (buffer != NULL, NULL);
487   g_return_val_if_fail (buffer->mini_object.refcount > 0, NULL);
488   g_return_val_if_fail (size > 0, NULL);
489   g_return_val_if_fail (buffer->size >= offset + size, NULL);
490
491   /* find real parent */
492   if (GST_IS_SUBBUFFER (buffer)) {
493     parent = GST_SUBBUFFER (buffer)->parent;
494   } else {
495     parent = buffer;
496   }
497   gst_buffer_ref (parent);
498
499   /* create the new buffer */
500   subbuffer = (GstSubBuffer *) gst_mini_object_new (GST_TYPE_SUBBUFFER);
501   subbuffer->parent = parent;
502
503   GST_CAT_LOG (GST_CAT_BUFFER, "new subbuffer %p (parent %p)", subbuffer,
504       parent);
505
506   /* set the right values in the child */
507   GST_BUFFER_DATA (GST_BUFFER_CAST (subbuffer)) = buffer->data + offset;
508   GST_BUFFER_SIZE (GST_BUFFER_CAST (subbuffer)) = size;
509
510   /* we can copy the timestamp and offset if the new buffer starts at
511    * offset 0 */
512   if (offset == 0) {
513     GST_BUFFER_TIMESTAMP (subbuffer) = GST_BUFFER_TIMESTAMP (buffer);
514     GST_BUFFER_OFFSET (subbuffer) = GST_BUFFER_OFFSET (buffer);
515   } else {
516     GST_BUFFER_TIMESTAMP (subbuffer) = GST_CLOCK_TIME_NONE;
517     GST_BUFFER_OFFSET (subbuffer) = GST_BUFFER_OFFSET_NONE;
518   }
519
520   GST_BUFFER_DURATION (subbuffer) = GST_CLOCK_TIME_NONE;
521   GST_BUFFER_OFFSET_END (subbuffer) = GST_BUFFER_OFFSET_NONE;
522
523   GST_BUFFER_CAPS (subbuffer) = NULL;
524
525   return GST_BUFFER_CAST (subbuffer);
526 }
527
528 /**
529  * gst_buffer_is_span_fast:
530  * @buf1: the first #GstBuffer.
531  * @buf2: the second #GstBuffer.
532  *
533  * Determines whether a gst_buffer_span() can be done without copying
534  * the contents, that is, whether the data areas are contiguous sub-buffers of 
535  * the same buffer.
536  *
537  * MT safe.
538  * Returns: TRUE if the buffers are contiguous,
539  * FALSE if a copy would be required.
540  */
541 gboolean
542 gst_buffer_is_span_fast (GstBuffer * buf1, GstBuffer * buf2)
543 {
544   g_return_val_if_fail (buf1 != NULL && buf2 != NULL, FALSE);
545   g_return_val_if_fail (buf1->mini_object.refcount > 0, FALSE);
546   g_return_val_if_fail (buf2->mini_object.refcount > 0, FALSE);
547
548   /* it's only fast if we have subbuffers of the same parent */
549   return (GST_IS_SUBBUFFER (buf1) &&
550       GST_IS_SUBBUFFER (buf2) &&
551       (GST_SUBBUFFER (buf1)->parent == GST_SUBBUFFER (buf2)->parent) &&
552       ((buf1->data + buf1->size) == buf2->data));
553 }
554
555 /**
556  * gst_buffer_span:
557  * @buf1: the first source #GstBuffer to merge.
558  * @offset: the offset in the first buffer from where the new
559  * buffer should start.
560  * @buf2: the second source #GstBuffer to merge.
561  * @len: the total length of the new buffer.
562  *
563  * Creates a new buffer that consists of part of buf1 and buf2.
564  * Logically, buf1 and buf2 are concatenated into a single larger
565  * buffer, and a new buffer is created at the given offset inside
566  * this space, with a given length.
567  *
568  * If the two source buffers are children of the same larger buffer,
569  * and are contiguous, the new buffer will be a child of the shared
570  * parent, and thus no copying is necessary. you can use
571  * gst_buffer_is_span_fast() to determine if a memcpy will be needed.
572  *
573  * MT safe.
574  * Returns: the new #GstBuffer that spans the two source buffers.
575  * Returns NULL if the arguments are invalid.
576  */
577 GstBuffer *
578 gst_buffer_span (GstBuffer * buf1, guint32 offset, GstBuffer * buf2,
579     guint32 len)
580 {
581   GstBuffer *newbuf;
582
583   g_return_val_if_fail (buf1 != NULL && buf2 != NULL, NULL);
584   g_return_val_if_fail (buf1->mini_object.refcount > 0, NULL);
585   g_return_val_if_fail (buf2->mini_object.refcount > 0, NULL);
586   g_return_val_if_fail (len > 0, NULL);
587   g_return_val_if_fail (len <= buf1->size + buf2->size - offset, NULL);
588
589   /* if the two buffers have the same parent and are adjacent */
590   if (gst_buffer_is_span_fast (buf1, buf2)) {
591     GstBuffer *parent = GST_SUBBUFFER (buf1)->parent;
592
593     /* we simply create a subbuffer of the common parent */
594     newbuf = gst_buffer_create_sub (parent,
595         buf1->data - parent->data + offset, len);
596   } else {
597     GST_CAT_DEBUG (GST_CAT_BUFFER,
598         "slow path taken while spanning buffers %p and %p", buf1, buf2);
599     /* otherwise we simply have to brute-force copy the buffers */
600     newbuf = gst_buffer_new_and_alloc (len);
601
602     /* copy the first buffer's data across */
603     memcpy (newbuf->data, buf1->data + offset, buf1->size - offset);
604     /* copy the second buffer's data across */
605     memcpy (newbuf->data + (buf1->size - offset), buf2->data,
606         len - (buf1->size - offset));
607   }
608   /* if the offset is 0, the new buffer has the same timestamp as buf1 */
609   if (offset == 0) {
610     GST_BUFFER_OFFSET (newbuf) = GST_BUFFER_OFFSET (buf1);
611     GST_BUFFER_TIMESTAMP (newbuf) = GST_BUFFER_TIMESTAMP (buf1);
612
613     /* if we completely merged the two buffers (appended), we can
614      * calculate the duration too. Also make sure we's not messing with
615      * invalid DURATIONS */
616     if (buf1->size + buf2->size == len) {
617       if (GST_BUFFER_DURATION_IS_VALID (buf1) &&
618           GST_BUFFER_DURATION_IS_VALID (buf2)) {
619         /* add duration */
620         GST_BUFFER_DURATION (newbuf) = GST_BUFFER_DURATION (buf1) +
621             GST_BUFFER_DURATION (buf2);
622       }
623       if (GST_BUFFER_OFFSET_END_IS_VALID (buf2)) {
624         /* add offset_end */
625         GST_BUFFER_OFFSET_END (newbuf) = GST_BUFFER_OFFSET_END (buf2);
626       }
627     }
628   }
629
630   return newbuf;
631 }