adapter: Also copy POOL metas and make sure to copy over metas when creating subbuffers
[platform/upstream/gstreamer.git] / libs / gst / base / gstadapter.c
1 /* GStreamer
2  * Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
3  *               2005 Wim Taymans <wim@fluendo.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * SECTION:gstadapter
23  * @short_description: adapts incoming data on a sink pad into chunks of N bytes
24  *
25  * This class is for elements that receive buffers in an undesired size.
26  * While for example raw video contains one image per buffer, the same is not
27  * true for a lot of other formats, especially those that come directly from
28  * a file. So if you have undefined buffer sizes and require a specific size,
29  * this object is for you.
30  *
31  * An adapter is created with gst_adapter_new(). It can be freed again with
32  * g_object_unref().
33  *
34  * The theory of operation is like this: All buffers received are put
35  * into the adapter using gst_adapter_push() and the data is then read back
36  * in chunks of the desired size using gst_adapter_map()/gst_adapter_unmap()
37  * and/or gst_adapter_copy(). After the data has been processed, it is freed
38  * using gst_adapter_unmap().
39  *
40  * Other methods such as gst_adapter_take() and gst_adapter_take_buffer()
41  * combine gst_adapter_map() and gst_adapter_unmap() in one method and are
42  * potentially more convenient for some use cases.
43  *
44  * For example, a sink pad's chain function that needs to pass data to a library
45  * in 512-byte chunks could be implemented like this:
46  * |[
47  * static GstFlowReturn
48  * sink_pad_chain (GstPad *pad, GstObject *parent, GstBuffer *buffer)
49  * {
50  *   MyElement *this;
51  *   GstAdapter *adapter;
52  *   GstFlowReturn ret = GST_FLOW_OK;
53  *
54  *   this = MY_ELEMENT (parent);
55  *
56  *   adapter = this->adapter;
57  *
58  *   // put buffer into adapter
59  *   gst_adapter_push (adapter, buffer);
60  *
61  *   // while we can read out 512 bytes, process them
62  *   while (gst_adapter_available (adapter) >= 512 && ret == GST_FLOW_OK) {
63  *     const guint8 *data = gst_adapter_map (adapter, 512);
64  *     // use flowreturn as an error value
65  *     ret = my_library_foo (data);
66  *     gst_adapter_unmap (adapter);
67  *     gst_adapter_flush (adapter, 512);
68  *   }
69  *   return ret;
70  * }
71  * ]|
72  *
73  * For another example, a simple element inside GStreamer that uses #GstAdapter
74  * is the libvisual element.
75  *
76  * An element using #GstAdapter in its sink pad chain function should ensure that
77  * when the FLUSH_STOP event is received, that any queued data is cleared using
78  * gst_adapter_clear(). Data should also be cleared or processed on EOS and
79  * when changing state from %GST_STATE_PAUSED to %GST_STATE_READY.
80  *
81  * Also check the GST_BUFFER_FLAG_DISCONT flag on the buffer. Some elements might
82  * need to clear the adapter after a discontinuity.
83  *
84  * The adapter will keep track of the timestamps of the buffers
85  * that were pushed. The last seen timestamp before the current position
86  * can be queried with gst_adapter_prev_pts(). This function can
87  * optionally return the number of bytes between the start of the buffer that
88  * carried the timestamp and the current adapter position. The distance is
89  * useful when dealing with, for example, raw audio samples because it allows
90  * you to calculate the timestamp of the current adapter position by using the
91  * last seen timestamp and the amount of bytes since.  Additionally, the
92  * gst_adapter_prev_pts_at_offset() can be used to determine the last
93  * seen timestamp at a particular offset in the adapter.
94  *
95  * A last thing to note is that while #GstAdapter is pretty optimized,
96  * merging buffers still might be an operation that requires a malloc() and
97  * memcpy() operation, and these operations are not the fastest. Because of
98  * this, some functions like gst_adapter_available_fast() are provided to help
99  * speed up such cases should you want to. To avoid repeated memory allocations,
100  * gst_adapter_copy() can be used to copy data into a (statically allocated)
101  * user provided buffer.
102  *
103  * #GstAdapter is not MT safe. All operations on an adapter must be serialized by
104  * the caller. This is not normally a problem, however, as the normal use case
105  * of #GstAdapter is inside one pad's chain function, in which case access is
106  * serialized via the pad's STREAM_LOCK.
107  *
108  * Note that gst_adapter_push() takes ownership of the buffer passed. Use
109  * gst_buffer_ref() before pushing it into the adapter if you still want to
110  * access the buffer later. The adapter will never modify the data in the
111  * buffer pushed in it.
112  */
113
114 #include <gst/gst_private.h>
115 #include "gstadapter.h"
116 #include <string.h>
117
118 /* default size for the assembled data buffer */
119 #define DEFAULT_SIZE 4096
120
121 static void gst_adapter_flush_unchecked (GstAdapter * adapter, gsize flush);
122
123 GST_DEBUG_CATEGORY_STATIC (gst_adapter_debug);
124 #define GST_CAT_DEFAULT gst_adapter_debug
125
126 struct _GstAdapter
127 {
128   GObject object;
129
130   /*< private > */
131   GSList *buflist;
132   GSList *buflist_end;
133   gsize size;
134   gsize skip;
135   guint count;
136
137   /* we keep state of assembled pieces */
138   gpointer assembled_data;
139   gsize assembled_size;
140   gsize assembled_len;
141
142   GstClockTime pts;
143   guint64 pts_distance;
144   GstClockTime dts;
145   guint64 dts_distance;
146
147   gsize scan_offset;
148   GSList *scan_entry;
149
150   GstMapInfo info;
151 };
152
153 struct _GstAdapterClass
154 {
155   GObjectClass parent_class;
156 };
157
158 #define _do_init \
159   GST_DEBUG_CATEGORY_INIT (gst_adapter_debug, "adapter", 0, "object to splice and merge buffers to desired size")
160 #define gst_adapter_parent_class parent_class
161 G_DEFINE_TYPE_WITH_CODE (GstAdapter, gst_adapter, G_TYPE_OBJECT, _do_init);
162
163 static void gst_adapter_dispose (GObject * object);
164 static void gst_adapter_finalize (GObject * object);
165
166 static void
167 gst_adapter_class_init (GstAdapterClass * klass)
168 {
169   GObjectClass *object = G_OBJECT_CLASS (klass);
170
171   object->dispose = gst_adapter_dispose;
172   object->finalize = gst_adapter_finalize;
173 }
174
175 static void
176 gst_adapter_init (GstAdapter * adapter)
177 {
178   adapter->assembled_data = g_malloc (DEFAULT_SIZE);
179   adapter->assembled_size = DEFAULT_SIZE;
180   adapter->pts = GST_CLOCK_TIME_NONE;
181   adapter->pts_distance = 0;
182   adapter->dts = GST_CLOCK_TIME_NONE;
183   adapter->dts_distance = 0;
184 }
185
186 static void
187 gst_adapter_dispose (GObject * object)
188 {
189   GstAdapter *adapter = GST_ADAPTER (object);
190
191   gst_adapter_clear (adapter);
192
193   GST_CALL_PARENT (G_OBJECT_CLASS, dispose, (object));
194 }
195
196 static void
197 gst_adapter_finalize (GObject * object)
198 {
199   GstAdapter *adapter = GST_ADAPTER (object);
200
201   g_free (adapter->assembled_data);
202
203   GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
204 }
205
206 /**
207  * gst_adapter_new:
208  *
209  * Creates a new #GstAdapter. Free with g_object_unref().
210  *
211  * Returns: (transfer full): a new #GstAdapter
212  */
213 GstAdapter *
214 gst_adapter_new (void)
215 {
216   return g_object_newv (GST_TYPE_ADAPTER, 0, NULL);
217 }
218
219 /**
220  * gst_adapter_clear:
221  * @adapter: a #GstAdapter
222  *
223  * Removes all buffers from @adapter.
224  */
225 void
226 gst_adapter_clear (GstAdapter * adapter)
227 {
228   g_return_if_fail (GST_IS_ADAPTER (adapter));
229
230   if (adapter->info.memory)
231     gst_adapter_unmap (adapter);
232
233   g_slist_foreach (adapter->buflist, (GFunc) gst_mini_object_unref, NULL);
234   g_slist_free (adapter->buflist);
235   adapter->buflist = NULL;
236   adapter->buflist_end = NULL;
237   adapter->count = 0;
238   adapter->size = 0;
239   adapter->skip = 0;
240   adapter->assembled_len = 0;
241   adapter->pts = GST_CLOCK_TIME_NONE;
242   adapter->pts_distance = 0;
243   adapter->dts = GST_CLOCK_TIME_NONE;
244   adapter->dts_distance = 0;
245   adapter->scan_offset = 0;
246   adapter->scan_entry = NULL;
247 }
248
249 static inline void
250 update_timestamps (GstAdapter * adapter, GstBuffer * buf)
251 {
252   GstClockTime pts, dts;
253
254   pts = GST_BUFFER_PTS (buf);
255   if (GST_CLOCK_TIME_IS_VALID (pts)) {
256     GST_LOG_OBJECT (adapter, "new pts %" GST_TIME_FORMAT, GST_TIME_ARGS (pts));
257     adapter->pts = pts;
258     adapter->pts_distance = 0;
259   }
260   dts = GST_BUFFER_DTS (buf);
261   if (GST_CLOCK_TIME_IS_VALID (dts)) {
262     GST_LOG_OBJECT (adapter, "new dts %" GST_TIME_FORMAT, GST_TIME_ARGS (dts));
263     adapter->dts = dts;
264     adapter->dts_distance = 0;
265   }
266 }
267
268 /* copy data into @dest, skipping @skip bytes from the head buffers */
269 static void
270 copy_into_unchecked (GstAdapter * adapter, guint8 * dest, gsize skip,
271     gsize size)
272 {
273   GSList *g;
274   GstBuffer *buf;
275   gsize bsize, csize;
276
277   /* first step, do skipping */
278   /* we might well be copying where we were scanning */
279   if (adapter->scan_entry && (adapter->scan_offset <= skip)) {
280     g = adapter->scan_entry;
281     skip -= adapter->scan_offset;
282   } else {
283     g = adapter->buflist;
284   }
285   buf = g->data;
286   bsize = gst_buffer_get_size (buf);
287   while (G_UNLIKELY (skip >= bsize)) {
288     skip -= bsize;
289     g = g_slist_next (g);
290     buf = g->data;
291     bsize = gst_buffer_get_size (buf);
292   }
293   /* copy partial buffer */
294   csize = MIN (bsize - skip, size);
295   GST_DEBUG ("bsize %" G_GSIZE_FORMAT ", skip %" G_GSIZE_FORMAT ", csize %"
296       G_GSIZE_FORMAT, bsize, skip, csize);
297   GST_CAT_LOG_OBJECT (GST_CAT_PERFORMANCE, adapter, "extract %" G_GSIZE_FORMAT
298       " bytes", csize);
299   gst_buffer_extract (buf, skip, dest, csize);
300   size -= csize;
301   dest += csize;
302
303   /* second step, copy remainder */
304   while (size > 0) {
305     g = g_slist_next (g);
306     buf = g->data;
307     bsize = gst_buffer_get_size (buf);
308     if (G_LIKELY (bsize > 0)) {
309       csize = MIN (bsize, size);
310       GST_CAT_LOG_OBJECT (GST_CAT_PERFORMANCE, adapter,
311           "extract %" G_GSIZE_FORMAT " bytes", csize);
312       gst_buffer_extract (buf, 0, dest, csize);
313       size -= csize;
314       dest += csize;
315     }
316   }
317 }
318
319 /**
320  * gst_adapter_push:
321  * @adapter: a #GstAdapter
322  * @buf: (transfer full): a #GstBuffer to add to queue in the adapter
323  *
324  * Adds the data from @buf to the data stored inside @adapter and takes
325  * ownership of the buffer.
326  */
327 void
328 gst_adapter_push (GstAdapter * adapter, GstBuffer * buf)
329 {
330   gsize size;
331
332   g_return_if_fail (GST_IS_ADAPTER (adapter));
333   g_return_if_fail (GST_IS_BUFFER (buf));
334
335   size = gst_buffer_get_size (buf);
336   adapter->size += size;
337
338   /* Note: merging buffers at this point is premature. */
339   if (G_UNLIKELY (adapter->buflist == NULL)) {
340     GST_LOG_OBJECT (adapter, "pushing %p first %" G_GSIZE_FORMAT " bytes",
341         buf, size);
342     adapter->buflist = adapter->buflist_end = g_slist_append (NULL, buf);
343     update_timestamps (adapter, buf);
344   } else {
345     /* Otherwise append to the end, and advance our end pointer */
346     GST_LOG_OBJECT (adapter, "pushing %p %" G_GSIZE_FORMAT " bytes at end, "
347         "size now %" G_GSIZE_FORMAT, buf, size, adapter->size);
348     adapter->buflist_end = g_slist_append (adapter->buflist_end, buf);
349     adapter->buflist_end = g_slist_next (adapter->buflist_end);
350   }
351   ++adapter->count;
352 }
353
354 #if 0
355 /* Internal method only. Tries to merge buffers at the head of the queue
356  * to form a single larger buffer of size 'size'.
357  *
358  * Returns %TRUE if it managed to merge anything.
359  */
360 static gboolean
361 gst_adapter_try_to_merge_up (GstAdapter * adapter, gsize size)
362 {
363   GstBuffer *cur, *head;
364   GSList *g;
365   gboolean ret = FALSE;
366   gsize hsize;
367
368   g = adapter->buflist;
369   if (g == NULL)
370     return FALSE;
371
372   head = g->data;
373
374   hsize = gst_buffer_get_size (head);
375
376   /* Remove skipped part from the buffer (otherwise the buffer might grow indefinitely) */
377   head = gst_buffer_make_writable (head);
378   gst_buffer_resize (head, adapter->skip, hsize - adapter->skip);
379   hsize -= adapter->skip;
380   adapter->skip = 0;
381   g->data = head;
382
383   g = g_slist_next (g);
384
385   while (g != NULL && hsize < size) {
386     cur = g->data;
387     /* Merge the head buffer and the next in line */
388     GST_LOG_OBJECT (adapter, "Merging buffers of size %" G_GSIZE_FORMAT " & %"
389         G_GSIZE_FORMAT " in search of target %" G_GSIZE_FORMAT,
390         hsize, gst_buffer_get_size (cur), size);
391
392     head = gst_buffer_append (head, cur);
393     hsize = gst_buffer_get_size (head);
394     ret = TRUE;
395
396     /* Delete the front list item, and store our new buffer in the 2nd list
397      * item */
398     adapter->buflist = g_slist_delete_link (adapter->buflist, adapter->buflist);
399     g->data = head;
400
401     /* invalidate scan position */
402     adapter->scan_offset = 0;
403     adapter->scan_entry = NULL;
404
405     g = g_slist_next (g);
406   }
407
408   return ret;
409 }
410 #endif
411
412 /**
413  * gst_adapter_map:
414  * @adapter: a #GstAdapter
415  * @size: the number of bytes to map/peek
416  *
417  * Gets the first @size bytes stored in the @adapter. The returned pointer is
418  * valid until the next function is called on the adapter.
419  *
420  * Note that setting the returned pointer as the data of a #GstBuffer is
421  * incorrect for general-purpose plugins. The reason is that if a downstream
422  * element stores the buffer so that it has access to it outside of the bounds
423  * of its chain function, the buffer will have an invalid data pointer after
424  * your element flushes the bytes. In that case you should use
425  * gst_adapter_take(), which returns a freshly-allocated buffer that you can set
426  * as #GstBuffer memory or the potentially more performant
427  * gst_adapter_take_buffer().
428  *
429  * Returns %NULL if @size bytes are not available.
430  *
431  * Returns: (transfer none) (array length=size) (element-type guint8) (nullable):
432  *     a pointer to the first @size bytes of data, or %NULL
433  */
434 gconstpointer
435 gst_adapter_map (GstAdapter * adapter, gsize size)
436 {
437   GstBuffer *cur;
438   gsize skip, csize;
439   gsize toreuse, tocopy;
440   guint8 *data;
441
442   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
443   g_return_val_if_fail (size > 0, NULL);
444
445   if (adapter->info.memory)
446     gst_adapter_unmap (adapter);
447
448   /* we don't have enough data, return NULL. This is unlikely
449    * as one usually does an _available() first instead of peeking a
450    * random size. */
451   if (G_UNLIKELY (size > adapter->size))
452     return NULL;
453
454   /* we have enough assembled data, return it */
455   if (adapter->assembled_len >= size)
456     return adapter->assembled_data;
457
458 #if 0
459   do {
460 #endif
461     cur = adapter->buflist->data;
462     skip = adapter->skip;
463
464     csize = gst_buffer_get_size (cur);
465     if (csize >= size + skip) {
466       if (!gst_buffer_map (cur, &adapter->info, GST_MAP_READ))
467         return FALSE;
468
469       return (guint8 *) adapter->info.data + skip;
470     }
471     /* We may be able to efficiently merge buffers in our pool to
472      * gather a big enough chunk to return it from the head buffer directly */
473 #if 0
474   } while (gst_adapter_try_to_merge_up (adapter, size));
475 #endif
476
477   /* see how much data we can reuse from the assembled memory and how much
478    * we need to copy */
479   toreuse = adapter->assembled_len;
480   tocopy = size - toreuse;
481
482   /* Gonna need to copy stuff out */
483   if (G_UNLIKELY (adapter->assembled_size < size)) {
484     adapter->assembled_size = (size / DEFAULT_SIZE + 1) * DEFAULT_SIZE;
485     GST_DEBUG_OBJECT (adapter, "resizing internal buffer to %" G_GSIZE_FORMAT,
486         adapter->assembled_size);
487     if (toreuse == 0) {
488       GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "alloc new buffer");
489       /* no g_realloc to avoid a memcpy that is not desired here since we are
490        * not going to reuse any data here */
491       g_free (adapter->assembled_data);
492       adapter->assembled_data = g_malloc (adapter->assembled_size);
493     } else {
494       /* we are going to reuse all data, realloc then */
495       GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "reusing %" G_GSIZE_FORMAT " bytes",
496           toreuse);
497       adapter->assembled_data =
498           g_realloc (adapter->assembled_data, adapter->assembled_size);
499     }
500   }
501   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy remaining %" G_GSIZE_FORMAT
502       " bytes from adapter", tocopy);
503   data = adapter->assembled_data;
504   copy_into_unchecked (adapter, data + toreuse, skip + toreuse, tocopy);
505   adapter->assembled_len = size;
506
507   return adapter->assembled_data;
508 }
509
510 /**
511  * gst_adapter_unmap:
512  * @adapter: a #GstAdapter
513  *
514  * Releases the memory obtained with the last gst_adapter_map().
515  */
516 void
517 gst_adapter_unmap (GstAdapter * adapter)
518 {
519   g_return_if_fail (GST_IS_ADAPTER (adapter));
520
521   if (adapter->info.memory) {
522     GstBuffer *cur = adapter->buflist->data;
523     GST_LOG_OBJECT (adapter, "unmap memory buffer %p", cur);
524     gst_buffer_unmap (cur, &adapter->info);
525     adapter->info.memory = NULL;
526   }
527 }
528
529 /**
530  * gst_adapter_copy: (skip)
531  * @adapter: a #GstAdapter
532  * @dest: (out caller-allocates) (array length=size) (element-type guint8):
533  *     the memory to copy into
534  * @offset: the bytes offset in the adapter to start from
535  * @size: the number of bytes to copy
536  *
537  * Copies @size bytes of data starting at @offset out of the buffers
538  * contained in #GstAdapter into an array @dest provided by the caller.
539  *
540  * The array @dest should be large enough to contain @size bytes.
541  * The user should check that the adapter has (@offset + @size) bytes
542  * available before calling this function.
543  */
544 void
545 gst_adapter_copy (GstAdapter * adapter, gpointer dest, gsize offset, gsize size)
546 {
547   g_return_if_fail (GST_IS_ADAPTER (adapter));
548   g_return_if_fail (size > 0);
549   g_return_if_fail (offset + size <= adapter->size);
550
551   copy_into_unchecked (adapter, dest, offset + adapter->skip, size);
552 }
553
554 /**
555  * gst_adapter_copy_bytes: (rename-to gst_adapter_copy)
556  * @adapter: a #GstAdapter
557  * @offset: the bytes offset in the adapter to start from
558  * @size: the number of bytes to copy
559  *
560  * Similar to gst_adapter_copy, but more suitable for language bindings. @size
561  * bytes of data starting at @offset will be copied out of the buffers contained
562  * in @adapter and into a new #GBytes structure which is returned. Depending on
563  * the value of the @size argument an empty #GBytes structure may be returned.
564  *
565  * Returns: (transfer full): A new #GBytes structure containing the copied data.
566  *
567  * Since: 1.4
568  */
569 GBytes *
570 gst_adapter_copy_bytes (GstAdapter * adapter, gsize offset, gsize size)
571 {
572   gpointer data;
573   data = g_malloc (size);
574   gst_adapter_copy (adapter, data, offset, size);
575   return g_bytes_new_take (data, size);
576 }
577
578 /*Flushes the first @flush bytes in the @adapter*/
579 static void
580 gst_adapter_flush_unchecked (GstAdapter * adapter, gsize flush)
581 {
582   GstBuffer *cur;
583   gsize size;
584   GSList *g;
585
586   GST_LOG_OBJECT (adapter, "flushing %" G_GSIZE_FORMAT " bytes", flush);
587
588   if (adapter->info.memory)
589     gst_adapter_unmap (adapter);
590
591   /* clear state */
592   adapter->size -= flush;
593   adapter->assembled_len = 0;
594
595   /* take skip into account */
596   flush += adapter->skip;
597   /* distance is always at least the amount of skipped bytes */
598   adapter->pts_distance -= adapter->skip;
599   adapter->dts_distance -= adapter->skip;
600
601   g = adapter->buflist;
602   cur = g->data;
603   size = gst_buffer_get_size (cur);
604   while (flush >= size) {
605     /* can skip whole buffer */
606     GST_LOG_OBJECT (adapter, "flushing out head buffer");
607     adapter->pts_distance += size;
608     adapter->dts_distance += size;
609     flush -= size;
610
611     gst_buffer_unref (cur);
612     g = g_slist_delete_link (g, g);
613     --adapter->count;
614
615     if (G_UNLIKELY (g == NULL)) {
616       GST_LOG_OBJECT (adapter, "adapter empty now");
617       adapter->buflist_end = NULL;
618       break;
619     }
620     /* there is a new head buffer, update the timestamps */
621     cur = g->data;
622     update_timestamps (adapter, cur);
623     size = gst_buffer_get_size (cur);
624   }
625   adapter->buflist = g;
626   /* account for the remaining bytes */
627   adapter->skip = flush;
628   adapter->pts_distance += flush;
629   adapter->dts_distance += flush;
630   /* invalidate scan position */
631   adapter->scan_offset = 0;
632   adapter->scan_entry = NULL;
633 }
634
635 /**
636  * gst_adapter_flush:
637  * @adapter: a #GstAdapter
638  * @flush: the number of bytes to flush
639  *
640  * Flushes the first @flush bytes in the @adapter. The caller must ensure that
641  * at least this many bytes are available.
642  *
643  * See also: gst_adapter_map(), gst_adapter_unmap()
644  */
645 void
646 gst_adapter_flush (GstAdapter * adapter, gsize flush)
647 {
648   g_return_if_fail (GST_IS_ADAPTER (adapter));
649   g_return_if_fail (flush <= adapter->size);
650
651   /* flushing out 0 bytes will do nothing */
652   if (G_UNLIKELY (flush == 0))
653     return;
654
655   gst_adapter_flush_unchecked (adapter, flush);
656 }
657
658 /* internal function, nbytes should be flushed if needed after calling this function */
659 static guint8 *
660 gst_adapter_get_internal (GstAdapter * adapter, gsize nbytes)
661 {
662   guint8 *data;
663   gsize toreuse, tocopy;
664
665   /* see how much data we can reuse from the assembled memory and how much
666    * we need to copy */
667   toreuse = MIN (nbytes, adapter->assembled_len);
668   tocopy = nbytes - toreuse;
669
670   /* find memory to return */
671   if (adapter->assembled_size >= nbytes && toreuse > 0) {
672     /* we reuse already allocated memory but only when we're going to reuse
673      * something from it because else we are worse than the malloc and copy
674      * case below */
675     GST_LOG_OBJECT (adapter, "reusing %" G_GSIZE_FORMAT " bytes of assembled"
676         " data", toreuse);
677     /* we have enough free space in the assembled array */
678     data = adapter->assembled_data;
679     /* flush after this function should set the assembled_size to 0 */
680     adapter->assembled_data = g_malloc (adapter->assembled_size);
681   } else {
682     GST_LOG_OBJECT (adapter, "allocating %" G_GSIZE_FORMAT " bytes", nbytes);
683     /* not enough bytes in the assembled array, just allocate new space */
684     data = g_malloc (nbytes);
685     /* reuse what we can from the already assembled data */
686     if (toreuse) {
687       GST_LOG_OBJECT (adapter, "reusing %" G_GSIZE_FORMAT " bytes", toreuse);
688       GST_CAT_LOG_OBJECT (GST_CAT_PERFORMANCE, adapter,
689           "memcpy %" G_GSIZE_FORMAT " bytes", toreuse);
690       memcpy (data, adapter->assembled_data, toreuse);
691     }
692   }
693   if (tocopy) {
694     /* copy the remaining data */
695     copy_into_unchecked (adapter, toreuse + data, toreuse + adapter->skip,
696         tocopy);
697   }
698   return data;
699 }
700
701 /**
702  * gst_adapter_take:
703  * @adapter: a #GstAdapter
704  * @nbytes: the number of bytes to take
705  *
706  * Returns a freshly allocated buffer containing the first @nbytes bytes of the
707  * @adapter. The returned bytes will be flushed from the adapter.
708  *
709  * Caller owns returned value. g_free after usage.
710  *
711  * Free-function: g_free
712  *
713  * Returns: (transfer full) (array length=nbytes) (element-type guint8) (nullable):
714  *     oven-fresh hot data, or %NULL if @nbytes bytes are not available
715  */
716 gpointer
717 gst_adapter_take (GstAdapter * adapter, gsize nbytes)
718 {
719   gpointer data;
720
721   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
722   g_return_val_if_fail (nbytes > 0, NULL);
723
724   /* we don't have enough data, return NULL. This is unlikely
725    * as one usually does an _available() first instead of peeking a
726    * random size. */
727   if (G_UNLIKELY (nbytes > adapter->size))
728     return NULL;
729
730   data = gst_adapter_get_internal (adapter, nbytes);
731
732   gst_adapter_flush_unchecked (adapter, nbytes);
733
734   return data;
735 }
736
737 /**
738  * gst_adapter_get_buffer_fast:
739  * @adapter:  a #GstAdapter
740  * @nbytes: the number of bytes to get
741  *
742  * Returns a #GstBuffer containing the first @nbytes of the @adapter, but
743  * does not flush them from the adapter. See gst_adapter_take_buffer_fast()
744  * for details.
745  *
746  * Caller owns a reference to the returned buffer. gst_buffer_unref() after
747  * usage.
748  *
749  * Free-function: gst_buffer_unref
750  *
751  * Returns: (transfer full) (nullable): a #GstBuffer containing the first
752  *     @nbytes of the adapter, or %NULL if @nbytes bytes are not available.
753  *     gst_buffer_unref() when no longer needed.
754  *
755  * Since: 1.6
756  */
757 GstBuffer *
758 gst_adapter_get_buffer_fast (GstAdapter * adapter, gsize nbytes)
759 {
760   GstBuffer *buffer = NULL;
761   GstBuffer *cur;
762   GSList *item;
763   gsize skip;
764   gsize left = nbytes;
765
766   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
767   g_return_val_if_fail (nbytes > 0, NULL);
768
769   GST_LOG_OBJECT (adapter, "getting buffer of %" G_GSIZE_FORMAT " bytes",
770       nbytes);
771
772   /* we don't have enough data, return NULL. This is unlikely
773    * as one usually does an _available() first instead of grabbing a
774    * random size. */
775   if (G_UNLIKELY (nbytes > adapter->size))
776     return NULL;
777
778   skip = adapter->skip;
779   cur = adapter->buflist->data;
780
781   if (skip == 0 && gst_buffer_get_size (cur) == nbytes) {
782     GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
783         " as head buffer", nbytes);
784     buffer = gst_buffer_ref (cur);
785     goto done;
786   }
787
788   for (item = adapter->buflist; item && left > 0; item = item->next) {
789     gsize size, cur_size;
790
791     cur = item->data;
792     cur_size = gst_buffer_get_size (cur);
793     size = MIN (cur_size - skip, left);
794
795     GST_LOG_OBJECT (adapter, "appending %" G_GSIZE_FORMAT " bytes"
796         " via region copy", size);
797     if (buffer)
798       gst_buffer_copy_into (buffer, cur,
799           GST_BUFFER_COPY_MEMORY | GST_BUFFER_COPY_META, skip, size);
800     else
801       buffer = gst_buffer_copy_region (cur, GST_BUFFER_COPY_ALL, skip, size);
802     skip = 0;
803     left -= size;
804   }
805
806 done:
807
808   return buffer;
809 }
810
811 /**
812  * gst_adapter_take_buffer_fast:
813  * @adapter:  a #GstAdapter
814  * @nbytes: the number of bytes to take
815  *
816  * Returns a #GstBuffer containing the first @nbytes of the @adapter.
817  * The returned bytes will be flushed from the adapter.  This function
818  * is potentially more performant than gst_adapter_take_buffer() since
819  * it can reuse the memory in pushed buffers by subbuffering or
820  * merging. Unlike gst_adapter_take_buffer(), the returned buffer may
821  * be composed of multiple non-contiguous #GstMemory objects, no
822  * copies are made.
823  *
824  * Note that no assumptions should be made as to whether certain buffer
825  * flags such as the DISCONT flag are set on the returned buffer, or not.
826  * The caller needs to explicitly set or unset flags that should be set or
827  * unset.
828  *
829  * This will also copy over all GstMeta of the input buffers except
830  * for meta with the %GST_META_FLAG_POOLED flag or with the "memory" tag.
831  *
832  * This function can return buffer up to the return value of
833  * gst_adapter_available() without making copies if possible.
834  *
835  * Caller owns a reference to the returned buffer. gst_buffer_unref() after
836  * usage.
837  *
838  * Free-function: gst_buffer_unref
839  *
840  * Returns: (transfer full) (nullable): a #GstBuffer containing the first
841  *     @nbytes of the adapter, or %NULL if @nbytes bytes are not available.
842  *     gst_buffer_unref() when no longer needed.
843  *
844  * Since: 1.2
845  */
846 GstBuffer *
847 gst_adapter_take_buffer_fast (GstAdapter * adapter, gsize nbytes)
848 {
849   GstBuffer *buffer;
850
851   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
852   g_return_val_if_fail (nbytes > 0, NULL);
853
854   buffer = gst_adapter_get_buffer_fast (adapter, nbytes);
855   if (buffer)
856     gst_adapter_flush_unchecked (adapter, nbytes);
857
858   return buffer;
859 }
860
861 static gboolean
862 foreach_metadata (GstBuffer * inbuf, GstMeta ** meta, gpointer user_data)
863 {
864   GstBuffer *outbuf = user_data;
865   const GstMetaInfo *info = (*meta)->info;
866   gboolean do_copy = FALSE;
867
868   if (gst_meta_api_type_has_tag (info->api, _gst_meta_tag_memory)) {
869     /* never call the transform_meta with memory specific metadata */
870     GST_DEBUG ("not copying memory specific metadata %s",
871         g_type_name (info->api));
872     do_copy = FALSE;
873   } else {
874     do_copy = TRUE;
875     GST_DEBUG ("copying metadata %s", g_type_name (info->api));
876   }
877
878   if (do_copy) {
879     GstMetaTransformCopy copy_data = { FALSE, 0, -1 };
880     GST_DEBUG ("copy metadata %s", g_type_name (info->api));
881     /* simply copy then */
882     info->transform_func (outbuf, *meta, inbuf,
883         _gst_meta_transform_copy, &copy_data);
884   }
885   return TRUE;
886 }
887
888 /**
889  * gst_adapter_get_buffer:
890  * @adapter: a #GstAdapter
891  * @nbytes: the number of bytes to get
892  *
893  * Returns a #GstBuffer containing the first @nbytes of the @adapter, but
894  * does not flush them from the adapter. See gst_adapter_take_buffer()
895  * for details.
896  *
897  * Caller owns a reference to the returned buffer. gst_buffer_unref() after
898  * usage.
899  *
900  * Free-function: gst_buffer_unref
901  *
902  * Returns: (transfer full) (nullable): a #GstBuffer containing the first
903  *     @nbytes of the adapter, or %NULL if @nbytes bytes are not available.
904  *     gst_buffer_unref() when no longer needed.
905  *
906  * Since: 1.6
907  */
908 GstBuffer *
909 gst_adapter_get_buffer (GstAdapter * adapter, gsize nbytes)
910 {
911   GstBuffer *buffer;
912   GstBuffer *cur;
913   gsize hsize, skip;
914   guint8 *data;
915
916   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
917   g_return_val_if_fail (nbytes > 0, NULL);
918
919   GST_LOG_OBJECT (adapter, "getting buffer of %" G_GSIZE_FORMAT " bytes",
920       nbytes);
921
922   /* we don't have enough data, return NULL. This is unlikely
923    * as one usually does an _available() first instead of grabbing a
924    * random size. */
925   if (G_UNLIKELY (nbytes > adapter->size))
926     return NULL;
927
928   cur = adapter->buflist->data;
929   skip = adapter->skip;
930   hsize = gst_buffer_get_size (cur);
931
932   /* our head buffer has enough data left, return it */
933   if (skip == 0 && hsize == nbytes) {
934     GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
935         " as head buffer", nbytes);
936     buffer = gst_buffer_ref (cur);
937     goto done;
938   } else if (hsize >= nbytes + skip) {
939     GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
940         " via region copy", nbytes);
941     buffer = gst_buffer_copy_region (cur, GST_BUFFER_COPY_ALL, skip, nbytes);
942     goto done;
943   }
944 #if 0
945   if (gst_adapter_try_to_merge_up (adapter, nbytes)) {
946     /* Merged something, let's try again for sub-buffering */
947     cur = adapter->buflist->data;
948     skip = adapter->skip;
949     if (gst_buffer_get_size (cur) >= nbytes + skip) {
950       GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
951           " via sub-buffer", nbytes);
952       buffer = gst_buffer_copy_region (cur, GST_BUFFER_COPY_ALL, skip, nbytes);
953       goto done;
954     }
955   }
956 #endif
957
958   data = gst_adapter_get_internal (adapter, nbytes);
959
960   buffer = gst_buffer_new_wrapped (data, nbytes);
961
962   {
963     GSList *g;
964     GstBuffer *cur;
965     gsize read_offset = 0;
966
967     g = adapter->buflist;
968     while (g && read_offset < nbytes + adapter->skip) {
969       cur = g->data;
970
971       gst_buffer_foreach_meta (cur, foreach_metadata, buffer);
972       read_offset += gst_buffer_get_size (cur);
973
974       g = g_slist_next (g);
975     }
976   }
977
978 done:
979
980   return buffer;
981 }
982
983 /**
984  * gst_adapter_take_buffer:
985  * @adapter: a #GstAdapter
986  * @nbytes: the number of bytes to take
987  *
988  * Returns a #GstBuffer containing the first @nbytes bytes of the
989  * @adapter. The returned bytes will be flushed from the adapter.
990  * This function is potentially more performant than
991  * gst_adapter_take() since it can reuse the memory in pushed buffers
992  * by subbuffering or merging. This function will always return a
993  * buffer with a single memory region.
994  *
995  * Note that no assumptions should be made as to whether certain buffer
996  * flags such as the DISCONT flag are set on the returned buffer, or not.
997  * The caller needs to explicitly set or unset flags that should be set or
998  * unset.
999  *
1000  * Since 1.6 this will also copy over all GstMeta of the input buffers except
1001  * for meta with the %GST_META_FLAG_POOLED flag or with the "memory" tag.
1002  *
1003  * Caller owns a reference to the returned buffer. gst_buffer_unref() after
1004  * usage.
1005  *
1006  * Free-function: gst_buffer_unref
1007  *
1008  * Returns: (transfer full) (nullable): a #GstBuffer containing the first
1009  *     @nbytes of the adapter, or %NULL if @nbytes bytes are not available.
1010  *     gst_buffer_unref() when no longer needed.
1011  */
1012 GstBuffer *
1013 gst_adapter_take_buffer (GstAdapter * adapter, gsize nbytes)
1014 {
1015   GstBuffer *buffer;
1016
1017   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
1018   g_return_val_if_fail (nbytes > 0, NULL);
1019
1020   buffer = gst_adapter_get_buffer (adapter, nbytes);
1021   if (buffer)
1022     gst_adapter_flush_unchecked (adapter, nbytes);
1023
1024   return buffer;
1025 }
1026
1027 /**
1028  * gst_adapter_take_list:
1029  * @adapter: a #GstAdapter
1030  * @nbytes: the number of bytes to take
1031  *
1032  * Returns a #GList of buffers containing the first @nbytes bytes of the
1033  * @adapter. The returned bytes will be flushed from the adapter.
1034  * When the caller can deal with individual buffers, this function is more
1035  * performant because no memory should be copied.
1036  *
1037  * Caller owns returned list and contained buffers. gst_buffer_unref() each
1038  * buffer in the list before freeing the list after usage.
1039  *
1040  * Returns: (element-type Gst.Buffer) (transfer full) (nullable): a #GList of
1041  *     buffers containing the first @nbytes of the adapter, or %NULL if @nbytes
1042  *     bytes are not available
1043  */
1044 GList *
1045 gst_adapter_take_list (GstAdapter * adapter, gsize nbytes)
1046 {
1047   GQueue queue = G_QUEUE_INIT;
1048   GstBuffer *cur;
1049   gsize hsize, skip, cur_size;
1050
1051   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
1052   g_return_val_if_fail (nbytes <= adapter->size, NULL);
1053
1054   GST_LOG_OBJECT (adapter, "taking %" G_GSIZE_FORMAT " bytes", nbytes);
1055
1056   while (nbytes > 0) {
1057     cur = adapter->buflist->data;
1058     skip = adapter->skip;
1059     cur_size = gst_buffer_get_size (cur);
1060     hsize = MIN (nbytes, cur_size - skip);
1061
1062     cur = gst_adapter_take_buffer (adapter, hsize);
1063
1064     g_queue_push_tail (&queue, cur);
1065
1066     nbytes -= hsize;
1067   }
1068   return queue.head;
1069 }
1070
1071 /**
1072  * gst_adapter_get_list:
1073  * @adapter: a #GstAdapter
1074  * @nbytes: the number of bytes to get
1075  *
1076  * Returns a #GList of buffers containing the first @nbytes bytes of the
1077  * @adapter, but does not flush them from the adapter. See
1078  * gst_adapter_take_list() for details.
1079  *
1080  * Caller owns returned list and contained buffers. gst_buffer_unref() each
1081  * buffer in the list before freeing the list after usage.
1082  *
1083  * Returns: (element-type Gst.Buffer) (transfer full) (nullable): a #GList of
1084  *     buffers containing the first @nbytes of the adapter, or %NULL if @nbytes
1085  *     bytes are not available
1086  *
1087  * Since: 1.6
1088  */
1089 GList *
1090 gst_adapter_get_list (GstAdapter * adapter, gsize nbytes)
1091 {
1092   GQueue queue = G_QUEUE_INIT;
1093   GstBuffer *cur;
1094   gsize hsize, skip, cur_size;
1095
1096   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
1097   g_return_val_if_fail (nbytes <= adapter->size, NULL);
1098
1099   GST_LOG_OBJECT (adapter, "getting %" G_GSIZE_FORMAT " bytes", nbytes);
1100
1101   while (nbytes > 0) {
1102     cur = adapter->buflist->data;
1103     skip = adapter->skip;
1104     cur_size = gst_buffer_get_size (cur);
1105     hsize = MIN (nbytes, cur_size - skip);
1106
1107     cur = gst_adapter_get_buffer (adapter, hsize);
1108
1109     g_queue_push_tail (&queue, cur);
1110
1111     nbytes -= hsize;
1112   }
1113   return queue.head;
1114 }
1115
1116 /**
1117  * gst_adapter_take_buffer_list:
1118  * @adapter: a #GstAdapter
1119  * @nbytes: the number of bytes to take
1120  *
1121  * Returns a #GstBufferList of buffers containing the first @nbytes bytes of
1122  * the @adapter. The returned bytes will be flushed from the adapter.
1123  * When the caller can deal with individual buffers, this function is more
1124  * performant because no memory should be copied.
1125  *
1126  * Caller owns the returned list. Call gst_buffer_list_unref() to free
1127  * the list after usage.
1128  *
1129  * Returns: (transfer full) (nullable): a #GstBufferList of buffers containing
1130  *     the first @nbytes of the adapter, or %NULL if @nbytes bytes are not
1131  *     available
1132  *
1133  * Since: 1.6
1134  */
1135 GstBufferList *
1136 gst_adapter_take_buffer_list (GstAdapter * adapter, gsize nbytes)
1137 {
1138   GstBufferList *buffer_list;
1139   GstBuffer *cur;
1140   gsize hsize, skip, cur_size;
1141   guint n_bufs;
1142
1143   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
1144
1145   if (nbytes > adapter->size)
1146     return NULL;
1147
1148   GST_LOG_OBJECT (adapter, "taking %" G_GSIZE_FORMAT " bytes", nbytes);
1149
1150   /* try to create buffer list with sufficient size, so no resize is done later */
1151   if (adapter->count < 64)
1152     n_bufs = adapter->count;
1153   else
1154     n_bufs = (adapter->count * nbytes * 1.2 / adapter->size) + 1;
1155
1156   buffer_list = gst_buffer_list_new_sized (n_bufs);
1157
1158   while (nbytes > 0) {
1159     cur = adapter->buflist->data;
1160     skip = adapter->skip;
1161     cur_size = gst_buffer_get_size (cur);
1162     hsize = MIN (nbytes, cur_size - skip);
1163
1164     gst_buffer_list_add (buffer_list, gst_adapter_take_buffer (adapter, hsize));
1165     nbytes -= hsize;
1166   }
1167   return buffer_list;
1168 }
1169
1170 /**
1171  * gst_adapter_get_buffer_list:
1172  * @adapter: a #GstAdapter
1173  * @nbytes: the number of bytes to get
1174  *
1175  * Returns a #GstBufferList of buffers containing the first @nbytes bytes of
1176  * the @adapter but does not flush them from the adapter. See
1177  * gst_adapter_take_buffer_list() for details.
1178  *
1179  * Caller owns the returned list. Call gst_buffer_list_unref() to free
1180  * the list after usage.
1181  *
1182  * Returns: (transfer full) (nullable): a #GstBufferList of buffers containing
1183  *     the first @nbytes of the adapter, or %NULL if @nbytes bytes are not
1184  *     available
1185  *
1186  * Since: 1.6
1187  */
1188 GstBufferList *
1189 gst_adapter_get_buffer_list (GstAdapter * adapter, gsize nbytes)
1190 {
1191   GstBufferList *buffer_list;
1192   GstBuffer *cur;
1193   gsize hsize, skip, cur_size;
1194   guint n_bufs;
1195
1196   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
1197
1198   if (nbytes > adapter->size)
1199     return NULL;
1200
1201   GST_LOG_OBJECT (adapter, "getting %" G_GSIZE_FORMAT " bytes", nbytes);
1202
1203   /* try to create buffer list with sufficient size, so no resize is done later */
1204   if (adapter->count < 64)
1205     n_bufs = adapter->count;
1206   else
1207     n_bufs = (adapter->count * nbytes * 1.2 / adapter->size) + 1;
1208
1209   buffer_list = gst_buffer_list_new_sized (n_bufs);
1210
1211   while (nbytes > 0) {
1212     cur = adapter->buflist->data;
1213     skip = adapter->skip;
1214     cur_size = gst_buffer_get_size (cur);
1215     hsize = MIN (nbytes, cur_size - skip);
1216
1217     gst_buffer_list_add (buffer_list, gst_adapter_get_buffer (adapter, hsize));
1218     nbytes -= hsize;
1219   }
1220   return buffer_list;
1221 }
1222
1223 /**
1224  * gst_adapter_available:
1225  * @adapter: a #GstAdapter
1226  *
1227  * Gets the maximum amount of bytes available, that is it returns the maximum
1228  * value that can be supplied to gst_adapter_map() without that function
1229  * returning %NULL.
1230  *
1231  * Returns: number of bytes available in @adapter
1232  */
1233 gsize
1234 gst_adapter_available (GstAdapter * adapter)
1235 {
1236   g_return_val_if_fail (GST_IS_ADAPTER (adapter), 0);
1237
1238   return adapter->size;
1239 }
1240
1241 /**
1242  * gst_adapter_available_fast:
1243  * @adapter: a #GstAdapter
1244  *
1245  * Gets the maximum number of bytes that are immediately available without
1246  * requiring any expensive operations (like copying the data into a
1247  * temporary buffer).
1248  *
1249  * Returns: number of bytes that are available in @adapter without expensive
1250  * operations
1251  */
1252 gsize
1253 gst_adapter_available_fast (GstAdapter * adapter)
1254 {
1255   GstBuffer *cur;
1256   gsize size;
1257   GSList *g;
1258
1259   g_return_val_if_fail (GST_IS_ADAPTER (adapter), 0);
1260
1261   /* no data */
1262   if (adapter->size == 0)
1263     return 0;
1264
1265   /* some stuff we already assembled */
1266   if (adapter->assembled_len)
1267     return adapter->assembled_len;
1268
1269   /* take the first non-zero buffer */
1270   g = adapter->buflist;
1271   while (TRUE) {
1272     cur = g->data;
1273     size = gst_buffer_get_size (cur);
1274     if (size != 0)
1275       break;
1276     g = g_slist_next (g);
1277   }
1278
1279   /* we can quickly get the (remaining) data of the first buffer */
1280   return size - adapter->skip;
1281 }
1282
1283 /**
1284  * gst_adapter_prev_pts:
1285  * @adapter: a #GstAdapter
1286  * @distance: (out) (allow-none): pointer to location for distance, or %NULL
1287  *
1288  * Get the pts that was before the current byte in the adapter. When
1289  * @distance is given, the amount of bytes between the pts and the current
1290  * position is returned.
1291  *
1292  * The pts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1293  * the adapter is first created or when it is cleared. This also means that before
1294  * the first byte with a pts is removed from the adapter, the pts
1295  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1296  *
1297  * Returns: The previously seen pts.
1298  */
1299 GstClockTime
1300 gst_adapter_prev_pts (GstAdapter * adapter, guint64 * distance)
1301 {
1302   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1303
1304   if (distance)
1305     *distance = adapter->pts_distance;
1306
1307   return adapter->pts;
1308 }
1309
1310 /**
1311  * gst_adapter_prev_dts:
1312  * @adapter: a #GstAdapter
1313  * @distance: (out) (allow-none): pointer to location for distance, or %NULL
1314  *
1315  * Get the dts that was before the current byte in the adapter. When
1316  * @distance is given, the amount of bytes between the dts and the current
1317  * position is returned.
1318  *
1319  * The dts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1320  * the adapter is first created or when it is cleared. This also means that before
1321  * the first byte with a dts is removed from the adapter, the dts
1322  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1323  *
1324  * Returns: The previously seen dts.
1325  */
1326 GstClockTime
1327 gst_adapter_prev_dts (GstAdapter * adapter, guint64 * distance)
1328 {
1329   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1330
1331   if (distance)
1332     *distance = adapter->dts_distance;
1333
1334   return adapter->dts;
1335 }
1336
1337 /**
1338  * gst_adapter_prev_pts_at_offset:
1339  * @adapter: a #GstAdapter
1340  * @offset: the offset in the adapter at which to get timestamp
1341  * @distance: (out) (allow-none): pointer to location for distance, or %NULL
1342  *
1343  * Get the pts that was before the byte at offset @offset in the adapter. When
1344  * @distance is given, the amount of bytes between the pts and the current
1345  * position is returned.
1346  *
1347  * The pts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1348  * the adapter is first created or when it is cleared. This also means that before
1349  * the first byte with a pts is removed from the adapter, the pts
1350  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1351  *
1352  * Since: 1.2
1353  * Returns: The previously seen pts at given offset.
1354  */
1355 GstClockTime
1356 gst_adapter_prev_pts_at_offset (GstAdapter * adapter, gsize offset,
1357     guint64 * distance)
1358 {
1359   GstBuffer *cur;
1360   GSList *g;
1361   gsize read_offset = 0;
1362   GstClockTime pts = adapter->pts;
1363
1364   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1365
1366   g = adapter->buflist;
1367
1368   while (g && read_offset < offset + adapter->skip) {
1369     cur = g->data;
1370
1371     read_offset += gst_buffer_get_size (cur);
1372     if (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_PTS (cur))) {
1373       pts = GST_BUFFER_PTS (cur);
1374     }
1375
1376     g = g_slist_next (g);
1377   }
1378
1379   if (distance)
1380     *distance = adapter->dts_distance + offset;
1381
1382   return pts;
1383 }
1384
1385 /**
1386  * gst_adapter_prev_dts_at_offset:
1387  * @adapter: a #GstAdapter
1388  * @offset: the offset in the adapter at which to get timestamp
1389  * @distance: (out) (allow-none): pointer to location for distance, or %NULL
1390  *
1391  * Get the dts that was before the byte at offset @offset in the adapter. When
1392  * @distance is given, the amount of bytes between the dts and the current
1393  * position is returned.
1394  *
1395  * The dts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1396  * the adapter is first created or when it is cleared. This also means that before
1397  * the first byte with a dts is removed from the adapter, the dts
1398  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1399  *
1400  * Since: 1.2
1401  * Returns: The previously seen dts at given offset.
1402  */
1403 GstClockTime
1404 gst_adapter_prev_dts_at_offset (GstAdapter * adapter, gsize offset,
1405     guint64 * distance)
1406 {
1407   GstBuffer *cur;
1408   GSList *g;
1409   gsize read_offset = 0;
1410   GstClockTime dts = adapter->dts;
1411
1412   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1413
1414   g = adapter->buflist;
1415
1416   while (g && read_offset < offset + adapter->skip) {
1417     cur = g->data;
1418
1419     read_offset += gst_buffer_get_size (cur);
1420     if (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DTS (cur))) {
1421       dts = GST_BUFFER_DTS (cur);
1422     }
1423
1424     g = g_slist_next (g);
1425   }
1426
1427   if (distance)
1428     *distance = adapter->dts_distance + offset;
1429
1430   return dts;
1431 }
1432
1433 /**
1434  * gst_adapter_masked_scan_uint32_peek:
1435  * @adapter: a #GstAdapter
1436  * @mask: mask to apply to data before matching against @pattern
1437  * @pattern: pattern to match (after mask is applied)
1438  * @offset: offset into the adapter data from which to start scanning, returns
1439  *          the last scanned position.
1440  * @size: number of bytes to scan from offset
1441  * @value: (out) (allow-none): pointer to uint32 to return matching data
1442  *
1443  * Scan for pattern @pattern with applied mask @mask in the adapter data,
1444  * starting from offset @offset.  If a match is found, the value that matched
1445  * is returned through @value, otherwise @value is left untouched.
1446  *
1447  * The bytes in @pattern and @mask are interpreted left-to-right, regardless
1448  * of endianness.  All four bytes of the pattern must be present in the
1449  * adapter for it to match, even if the first or last bytes are masked out.
1450  *
1451  * It is an error to call this function without making sure that there is
1452  * enough data (offset+size bytes) in the adapter.
1453  *
1454  * Returns: offset of the first match, or -1 if no match was found.
1455  */
1456 gssize
1457 gst_adapter_masked_scan_uint32_peek (GstAdapter * adapter, guint32 mask,
1458     guint32 pattern, gsize offset, gsize size, guint32 * value)
1459 {
1460   GSList *g;
1461   gsize skip, bsize, i;
1462   guint32 state;
1463   GstMapInfo info;
1464   guint8 *bdata;
1465   GstBuffer *buf;
1466
1467   g_return_val_if_fail (size > 0, -1);
1468   g_return_val_if_fail (offset + size <= adapter->size, -1);
1469   g_return_val_if_fail (((~mask) & pattern) == 0, -1);
1470
1471   /* we can't find the pattern with less than 4 bytes */
1472   if (G_UNLIKELY (size < 4))
1473     return -1;
1474
1475   skip = offset + adapter->skip;
1476
1477   /* first step, do skipping and position on the first buffer */
1478   /* optimistically assume scanning continues sequentially */
1479   if (adapter->scan_entry && (adapter->scan_offset <= skip)) {
1480     g = adapter->scan_entry;
1481     skip -= adapter->scan_offset;
1482   } else {
1483     g = adapter->buflist;
1484     adapter->scan_offset = 0;
1485     adapter->scan_entry = NULL;
1486   }
1487   buf = g->data;
1488   bsize = gst_buffer_get_size (buf);
1489   while (G_UNLIKELY (skip >= bsize)) {
1490     skip -= bsize;
1491     g = g_slist_next (g);
1492     adapter->scan_offset += bsize;
1493     adapter->scan_entry = g;
1494     buf = g->data;
1495     bsize = gst_buffer_get_size (buf);
1496   }
1497   /* get the data now */
1498   if (!gst_buffer_map (buf, &info, GST_MAP_READ))
1499     return -1;
1500
1501   bdata = (guint8 *) info.data + skip;
1502   bsize = info.size - skip;
1503   skip = 0;
1504
1505   /* set the state to something that does not match */
1506   state = ~pattern;
1507
1508   /* now find data */
1509   do {
1510     bsize = MIN (bsize, size);
1511     for (i = 0; i < bsize; i++) {
1512       state = ((state << 8) | bdata[i]);
1513       if (G_UNLIKELY ((state & mask) == pattern)) {
1514         /* we have a match but we need to have skipped at
1515          * least 4 bytes to fill the state. */
1516         if (G_LIKELY (skip + i >= 3)) {
1517           if (G_LIKELY (value))
1518             *value = state;
1519           gst_buffer_unmap (buf, &info);
1520           return offset + skip + i - 3;
1521         }
1522       }
1523     }
1524     size -= bsize;
1525     if (size == 0)
1526       break;
1527
1528     /* nothing found yet, go to next buffer */
1529     skip += bsize;
1530     g = g_slist_next (g);
1531     adapter->scan_offset += info.size;
1532     adapter->scan_entry = g;
1533     gst_buffer_unmap (buf, &info);
1534     buf = g->data;
1535
1536     if (!gst_buffer_map (buf, &info, GST_MAP_READ))
1537       return -1;
1538
1539     bsize = info.size;
1540     bdata = info.data;
1541   } while (TRUE);
1542
1543   gst_buffer_unmap (buf, &info);
1544
1545   /* nothing found */
1546   return -1;
1547 }
1548
1549 /**
1550  * gst_adapter_masked_scan_uint32:
1551  * @adapter: a #GstAdapter
1552  * @mask: mask to apply to data before matching against @pattern
1553  * @pattern: pattern to match (after mask is applied)
1554  * @offset: offset into the adapter data from which to start scanning, returns
1555  *          the last scanned position.
1556  * @size: number of bytes to scan from offset
1557  *
1558  * Scan for pattern @pattern with applied mask @mask in the adapter data,
1559  * starting from offset @offset.
1560  *
1561  * The bytes in @pattern and @mask are interpreted left-to-right, regardless
1562  * of endianness.  All four bytes of the pattern must be present in the
1563  * adapter for it to match, even if the first or last bytes are masked out.
1564  *
1565  * It is an error to call this function without making sure that there is
1566  * enough data (offset+size bytes) in the adapter.
1567  *
1568  * This function calls gst_adapter_masked_scan_uint32_peek() passing %NULL
1569  * for value.
1570  *
1571  * Returns: offset of the first match, or -1 if no match was found.
1572  *
1573  * Example:
1574  * <programlisting>
1575  * // Assume the adapter contains 0x00 0x01 0x02 ... 0xfe 0xff
1576  *
1577  * gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x00010203, 0, 256);
1578  * // -> returns 0
1579  * gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x00010203, 1, 255);
1580  * // -> returns -1
1581  * gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x01020304, 1, 255);
1582  * // -> returns 1
1583  * gst_adapter_masked_scan_uint32 (adapter, 0xffff, 0x0001, 0, 256);
1584  * // -> returns -1
1585  * gst_adapter_masked_scan_uint32 (adapter, 0xffff, 0x0203, 0, 256);
1586  * // -> returns 0
1587  * gst_adapter_masked_scan_uint32 (adapter, 0xffff0000, 0x02030000, 0, 256);
1588  * // -> returns 2
1589  * gst_adapter_masked_scan_uint32 (adapter, 0xffff0000, 0x02030000, 0, 4);
1590  * // -> returns -1
1591  * </programlisting>
1592  */
1593 gssize
1594 gst_adapter_masked_scan_uint32 (GstAdapter * adapter, guint32 mask,
1595     guint32 pattern, gsize offset, gsize size)
1596 {
1597   return gst_adapter_masked_scan_uint32_peek (adapter, mask, pattern, offset,
1598       size, NULL);
1599 }