adapter: Remove always-true-checks
[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  * Last reviewed on 2009-05-13 (0.10.24).
114  */
115
116 #include <gst/gst_private.h>
117 #include "gstadapter.h"
118 #include <string.h>
119
120 /* default size for the assembled data buffer */
121 #define DEFAULT_SIZE 4096
122
123 static void gst_adapter_flush_unchecked (GstAdapter * adapter, gsize flush);
124
125 GST_DEBUG_CATEGORY_STATIC (gst_adapter_debug);
126 #define GST_CAT_DEFAULT gst_adapter_debug
127
128 struct _GstAdapter
129 {
130   GObject object;
131
132   /*< private > */
133   GSList *buflist;
134   GSList *buflist_end;
135   gsize size;
136   gsize skip;
137
138   /* we keep state of assembled pieces */
139   gpointer assembled_data;
140   gsize assembled_size;
141   gsize assembled_len;
142
143   GstClockTime pts;
144   guint64 pts_distance;
145   GstClockTime dts;
146   guint64 dts_distance;
147
148   gsize scan_offset;
149   GSList *scan_entry;
150
151   GstMapInfo info;
152 };
153
154 struct _GstAdapterClass
155 {
156   GObjectClass parent_class;
157 };
158
159 #define _do_init \
160   GST_DEBUG_CATEGORY_INIT (gst_adapter_debug, "adapter", 0, "object to splice and merge buffers to desired size")
161 #define gst_adapter_parent_class parent_class
162 G_DEFINE_TYPE_WITH_CODE (GstAdapter, gst_adapter, G_TYPE_OBJECT, _do_init);
163
164 static void gst_adapter_dispose (GObject * object);
165 static void gst_adapter_finalize (GObject * object);
166
167 static void
168 gst_adapter_class_init (GstAdapterClass * klass)
169 {
170   GObjectClass *object = G_OBJECT_CLASS (klass);
171
172   object->dispose = gst_adapter_dispose;
173   object->finalize = gst_adapter_finalize;
174 }
175
176 static void
177 gst_adapter_init (GstAdapter * adapter)
178 {
179   adapter->assembled_data = g_malloc (DEFAULT_SIZE);
180   adapter->assembled_size = DEFAULT_SIZE;
181   adapter->pts = GST_CLOCK_TIME_NONE;
182   adapter->pts_distance = 0;
183   adapter->dts = GST_CLOCK_TIME_NONE;
184   adapter->dts_distance = 0;
185 }
186
187 static void
188 gst_adapter_dispose (GObject * object)
189 {
190   GstAdapter *adapter = GST_ADAPTER (object);
191
192   gst_adapter_clear (adapter);
193
194   GST_CALL_PARENT (G_OBJECT_CLASS, dispose, (object));
195 }
196
197 static void
198 gst_adapter_finalize (GObject * object)
199 {
200   GstAdapter *adapter = GST_ADAPTER (object);
201
202   g_free (adapter->assembled_data);
203
204   GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
205 }
206
207 /**
208  * gst_adapter_new:
209  *
210  * Creates a new #GstAdapter. Free with g_object_unref().
211  *
212  * Returns: (transfer full): a new #GstAdapter
213  */
214 GstAdapter *
215 gst_adapter_new (void)
216 {
217   return g_object_newv (GST_TYPE_ADAPTER, 0, NULL);
218 }
219
220 /**
221  * gst_adapter_clear:
222  * @adapter: a #GstAdapter
223  *
224  * Removes all buffers from @adapter.
225  */
226 void
227 gst_adapter_clear (GstAdapter * adapter)
228 {
229   g_return_if_fail (GST_IS_ADAPTER (adapter));
230
231   if (adapter->info.memory)
232     gst_adapter_unmap (adapter);
233
234   g_slist_foreach (adapter->buflist, (GFunc) gst_mini_object_unref, NULL);
235   g_slist_free (adapter->buflist);
236   adapter->buflist = NULL;
237   adapter->buflist_end = NULL;
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 }
352
353 #if 0
354 /* Internal method only. Tries to merge buffers at the head of the queue
355  * to form a single larger buffer of size 'size'.
356  *
357  * Returns TRUE if it managed to merge anything.
358  */
359 static gboolean
360 gst_adapter_try_to_merge_up (GstAdapter * adapter, gsize size)
361 {
362   GstBuffer *cur, *head;
363   GSList *g;
364   gboolean ret = FALSE;
365   gsize hsize;
366
367   g = adapter->buflist;
368   if (g == NULL)
369     return FALSE;
370
371   head = g->data;
372
373   hsize = gst_buffer_get_size (head);
374
375   /* Remove skipped part from the buffer (otherwise the buffer might grow indefinitely) */
376   head = gst_buffer_make_writable (head);
377   gst_buffer_resize (head, adapter->skip, hsize - adapter->skip);
378   hsize -= adapter->skip;
379   adapter->skip = 0;
380   g->data = head;
381
382   g = g_slist_next (g);
383
384   while (g != NULL && hsize < size) {
385     cur = g->data;
386     /* Merge the head buffer and the next in line */
387     GST_LOG_OBJECT (adapter, "Merging buffers of size %" G_GSIZE_FORMAT " & %"
388         G_GSIZE_FORMAT " in search of target %" G_GSIZE_FORMAT,
389         hsize, gst_buffer_get_size (cur), size);
390
391     head = gst_buffer_append (head, cur);
392     hsize = gst_buffer_get_size (head);
393     ret = TRUE;
394
395     /* Delete the front list item, and store our new buffer in the 2nd list
396      * item */
397     adapter->buflist = g_slist_delete_link (adapter->buflist, adapter->buflist);
398     g->data = head;
399
400     /* invalidate scan position */
401     adapter->scan_offset = 0;
402     adapter->scan_entry = NULL;
403
404     g = g_slist_next (g);
405   }
406
407   return ret;
408 }
409 #endif
410
411 /**
412  * gst_adapter_map:
413  * @adapter: a #GstAdapter
414  * @size: the number of bytes to map/peek
415  *
416  * Gets the first @size bytes stored in the @adapter. The returned pointer is
417  * valid until the next function is called on the adapter.
418  *
419  * Note that setting the returned pointer as the data of a #GstBuffer is
420  * incorrect for general-purpose plugins. The reason is that if a downstream
421  * element stores the buffer so that it has access to it outside of the bounds
422  * of its chain function, the buffer will have an invalid data pointer after
423  * your element flushes the bytes. In that case you should use
424  * gst_adapter_take(), which returns a freshly-allocated buffer that you can set
425  * as #GstBuffer memory or the potentially more performant
426  * gst_adapter_take_buffer().
427  *
428  * Returns #NULL if @size bytes are not available.
429  *
430  * Returns: (transfer none) (array length=size) (element-type guint8):
431  *     a pointer to the first @size bytes of data, or NULL
432  */
433 gconstpointer
434 gst_adapter_map (GstAdapter * adapter, gsize size)
435 {
436   GstBuffer *cur;
437   gsize skip, csize;
438   gsize toreuse, tocopy;
439   guint8 *data;
440
441   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
442   g_return_val_if_fail (size > 0, NULL);
443
444   if (adapter->info.memory)
445     gst_adapter_unmap (adapter);
446
447   /* we don't have enough data, return NULL. This is unlikely
448    * as one usually does an _available() first instead of peeking a
449    * random size. */
450   if (G_UNLIKELY (size > adapter->size))
451     return NULL;
452
453   /* we have enough assembled data, return it */
454   if (adapter->assembled_len >= size)
455     return adapter->assembled_data;
456
457 #if 0
458   do {
459 #endif
460     cur = adapter->buflist->data;
461     skip = adapter->skip;
462
463     csize = gst_buffer_get_size (cur);
464     if (csize >= size + skip) {
465       if (!gst_buffer_map (cur, &adapter->info, GST_MAP_READ))
466         return FALSE;
467
468       return (guint8 *) adapter->info.data + skip;
469     }
470     /* We may be able to efficiently merge buffers in our pool to
471      * gather a big enough chunk to return it from the head buffer directly */
472 #if 0
473   } while (gst_adapter_try_to_merge_up (adapter, size));
474 #endif
475
476   /* see how much data we can reuse from the assembled memory and how much
477    * we need to copy */
478   toreuse = adapter->assembled_len;
479   tocopy = size - toreuse;
480
481   /* Gonna need to copy stuff out */
482   if (G_UNLIKELY (adapter->assembled_size < size)) {
483     adapter->assembled_size = (size / DEFAULT_SIZE + 1) * DEFAULT_SIZE;
484     GST_DEBUG_OBJECT (adapter, "resizing internal buffer to %" G_GSIZE_FORMAT,
485         adapter->assembled_size);
486     if (toreuse == 0) {
487       GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "alloc new buffer");
488       /* no g_realloc to avoid a memcpy that is not desired here since we are
489        * not going to reuse any data here */
490       g_free (adapter->assembled_data);
491       adapter->assembled_data = g_malloc (adapter->assembled_size);
492     } else {
493       /* we are going to reuse all data, realloc then */
494       GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "reusing %" G_GSIZE_FORMAT " bytes",
495           toreuse);
496       adapter->assembled_data =
497           g_realloc (adapter->assembled_data, adapter->assembled_size);
498     }
499   }
500   GST_CAT_DEBUG (GST_CAT_PERFORMANCE, "copy remaining %" G_GSIZE_FORMAT
501       " bytes from adapter", tocopy);
502   data = adapter->assembled_data;
503   copy_into_unchecked (adapter, data + toreuse, skip + toreuse, tocopy);
504   adapter->assembled_len = size;
505
506   return adapter->assembled_data;
507 }
508
509 /**
510  * gst_adapter_unmap:
511  * @adapter: a #GstAdapter
512  *
513  * Releases the memory obtained with the last gst_adapter_map().
514  */
515 void
516 gst_adapter_unmap (GstAdapter * adapter)
517 {
518   g_return_if_fail (GST_IS_ADAPTER (adapter));
519
520   if (adapter->info.memory) {
521     GstBuffer *cur = adapter->buflist->data;
522     GST_LOG_OBJECT (adapter, "unmap memory buffer %p", cur);
523     gst_buffer_unmap (cur, &adapter->info);
524     adapter->info.memory = NULL;
525   }
526 }
527
528 /**
529  * gst_adapter_copy: (skip)
530  * @adapter: a #GstAdapter
531  * @dest: (out caller-allocates) (array length=size) (element-type guint8):
532  *     the memory to copy into
533  * @offset: the bytes offset in the adapter to start from
534  * @size: the number of bytes to copy
535  *
536  * Copies @size bytes of data starting at @offset out of the buffers
537  * contained in @GstAdapter into an array @dest provided by the caller.
538  *
539  * The array @dest should be large enough to contain @size bytes.
540  * The user should check that the adapter has (@offset + @size) bytes
541  * available before calling this function.
542  */
543 void
544 gst_adapter_copy (GstAdapter * adapter, gpointer dest, gsize offset, gsize size)
545 {
546   g_return_if_fail (GST_IS_ADAPTER (adapter));
547   g_return_if_fail (size > 0);
548   g_return_if_fail (offset + size <= adapter->size);
549
550   copy_into_unchecked (adapter, dest, offset + adapter->skip, size);
551 }
552
553 /**
554  * gst_adapter_copy_bytes:
555  * @adapter: a #GstAdapter
556  * @offset: the bytes offset in the adapter to start from
557  * @size: the number of bytes to copy
558  *
559  * Similar to gst_adapter_copy, but more suitable for language bindings. @size
560  * bytes of data starting at @offset will be copied out of the buffers contained
561  * in @adapter and into a new #GBytes structure which is returned. Depending on
562  * the value of the @size argument an empty #GBytes structure may be returned.
563  *
564  * Returns: (transfer full): A new #GBytes structure containing the copied data.
565  *
566  * Rename to: gst_adapter_copy
567  *
568  * Since: 1.4
569  */
570 GBytes *
571 gst_adapter_copy_bytes (GstAdapter * adapter, gsize offset, gsize size)
572 {
573   gpointer data;
574   data = g_malloc (size);
575   gst_adapter_copy (adapter, data, offset, size);
576   return g_bytes_new_take (data, size);
577 }
578
579 /*Flushes the first @flush bytes in the @adapter*/
580 static void
581 gst_adapter_flush_unchecked (GstAdapter * adapter, gsize flush)
582 {
583   GstBuffer *cur;
584   gsize size;
585   GSList *g;
586
587   GST_LOG_OBJECT (adapter, "flushing %" G_GSIZE_FORMAT " bytes", flush);
588
589   if (adapter->info.memory)
590     gst_adapter_unmap (adapter);
591
592   /* clear state */
593   adapter->size -= flush;
594   adapter->assembled_len = 0;
595
596   /* take skip into account */
597   flush += adapter->skip;
598   /* distance is always at least the amount of skipped bytes */
599   adapter->pts_distance -= adapter->skip;
600   adapter->dts_distance -= adapter->skip;
601
602   g = adapter->buflist;
603   cur = g->data;
604   size = gst_buffer_get_size (cur);
605   while (flush >= size) {
606     /* can skip whole buffer */
607     GST_LOG_OBJECT (adapter, "flushing out head buffer");
608     adapter->pts_distance += size;
609     adapter->dts_distance += size;
610     flush -= size;
611
612     gst_buffer_unref (cur);
613     g = g_slist_delete_link (g, g);
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 after calling this function */
659 static guint8 *
660 gst_adapter_take_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):
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_take_internal (adapter, nbytes);
731
732   gst_adapter_flush_unchecked (adapter, nbytes);
733
734   return data;
735 }
736
737 /**
738  * gst_adapter_take_buffer_fast:
739  * @adapter:  a #GstAdapter
740  * @nbytes: the number of bytes to take
741  *
742  * Returns a #GstBuffer containing the first @nbytes of the @adapter.
743  * The returned bytes will be flushed from the adapter.  This function
744  * is potentially more performant than gst_adapter_take_buffer() since
745  * it can reuse the memory in pushed buffers by subbuffering or
746  * merging. Unlike gst_adapter_take_buffer(), the returned buffer may
747  * be composed of multiple non-contiguous #GstMemory objects, no
748  * copies are made.
749  *
750  * Note that no assumptions should be made as to whether certain buffer
751  * flags such as the DISCONT flag are set on the returned buffer, or not.
752  * The caller needs to explicitly set or unset flags that should be set or
753  * unset.
754  *
755  * This function can return buffer up to the return value of
756  * gst_adapter_available() without making copies if possible.
757  *
758  * Caller owns a reference to the returned buffer. gst_buffer_unref() after
759  * usage.
760  *
761  * Free-function: gst_buffer_unref
762  *
763  * Returns: (transfer full): a #GstBuffer containing the first @nbytes of
764  *     the adapter, or #NULL if @nbytes bytes are not available.
765  *     gst_buffer_unref() when no longer needed.
766  *
767  * Since: 1.2
768  */
769
770 GstBuffer *
771 gst_adapter_take_buffer_fast (GstAdapter * adapter, gsize nbytes)
772 {
773   GstBuffer *buffer = NULL;
774   GstBuffer *cur;
775   GSList *item;
776   gsize skip;
777   gsize left = nbytes;
778
779   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
780   g_return_val_if_fail (nbytes > 0, NULL);
781
782   GST_LOG_OBJECT (adapter, "taking buffer of %" G_GSIZE_FORMAT " bytes",
783       nbytes);
784
785   /* we don't have enough data, return NULL. This is unlikely
786    * as one usually does an _available() first instead of grabbing a
787    * random size. */
788   if (G_UNLIKELY (nbytes > adapter->size))
789     return NULL;
790
791   skip = adapter->skip;
792   cur = adapter->buflist->data;
793
794   if (skip == 0 && gst_buffer_get_size (cur) == nbytes) {
795     GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
796         " as head buffer", nbytes);
797     buffer = gst_buffer_ref (cur);
798     goto done;
799   }
800
801   for (item = adapter->buflist; item && left > 0; item = item->next) {
802     gsize size;
803
804     cur = item->data;
805     size = MIN (gst_buffer_get_size (cur) - skip, left);
806
807     GST_LOG_OBJECT (adapter, "appending %" G_GSIZE_FORMAT " bytes"
808         " via region copy", size);
809     if (buffer)
810       gst_buffer_copy_into (buffer, cur, GST_BUFFER_COPY_MEMORY, skip, size);
811     else
812       buffer = gst_buffer_copy_region (cur, GST_BUFFER_COPY_ALL, skip, size);
813     skip = 0;
814     left -= size;
815   }
816
817 done:
818   gst_adapter_flush_unchecked (adapter, nbytes);
819
820   return buffer;
821 }
822
823 /**
824  * gst_adapter_take_buffer:
825  * @adapter: a #GstAdapter
826  * @nbytes: the number of bytes to take
827  *
828  * Returns a #GstBuffer containing the first @nbytes bytes of the
829  * @adapter. The returned bytes will be flushed from the adapter.
830  * This function is potentially more performant than
831  * gst_adapter_take() since it can reuse the memory in pushed buffers
832  * by subbuffering or merging. This function will always return a
833  * buffer with a single memory region.
834  *
835  * Note that no assumptions should be made as to whether certain buffer
836  * flags such as the DISCONT flag are set on the returned buffer, or not.
837  * The caller needs to explicitly set or unset flags that should be set or
838  * unset.
839  *
840  * Caller owns a reference to the returned buffer. gst_buffer_unref() after
841  * usage.
842  *
843  * Free-function: gst_buffer_unref
844  *
845  * Returns: (transfer full): a #GstBuffer containing the first @nbytes of
846  *     the adapter, or #NULL if @nbytes bytes are not available.
847  *     gst_buffer_unref() when no longer needed.
848  */
849 GstBuffer *
850 gst_adapter_take_buffer (GstAdapter * adapter, gsize nbytes)
851 {
852   GstBuffer *buffer;
853   GstBuffer *cur;
854   gsize hsize, skip;
855   guint8 *data;
856
857   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
858   g_return_val_if_fail (nbytes > 0, NULL);
859
860   GST_LOG_OBJECT (adapter, "taking buffer of %" G_GSIZE_FORMAT " bytes",
861       nbytes);
862
863   /* we don't have enough data, return NULL. This is unlikely
864    * as one usually does an _available() first instead of grabbing a
865    * random size. */
866   if (G_UNLIKELY (nbytes > adapter->size))
867     return NULL;
868
869   cur = adapter->buflist->data;
870   skip = adapter->skip;
871   hsize = gst_buffer_get_size (cur);
872
873   /* our head buffer has enough data left, return it */
874   if (skip == 0 && hsize == nbytes) {
875     GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
876         " as head buffer", nbytes);
877     buffer = gst_buffer_ref (cur);
878     goto done;
879   } else if (hsize >= nbytes + skip) {
880     GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
881         " via region copy", nbytes);
882     buffer = gst_buffer_copy_region (cur, GST_BUFFER_COPY_ALL, skip, nbytes);
883     goto done;
884   }
885 #if 0
886   if (gst_adapter_try_to_merge_up (adapter, nbytes)) {
887     /* Merged something, let's try again for sub-buffering */
888     cur = adapter->buflist->data;
889     skip = adapter->skip;
890     if (gst_buffer_get_size (cur) >= nbytes + skip) {
891       GST_LOG_OBJECT (adapter, "providing buffer of %" G_GSIZE_FORMAT " bytes"
892           " via sub-buffer", nbytes);
893       buffer = gst_buffer_copy_region (cur, GST_BUFFER_COPY_ALL, skip, nbytes);
894       goto done;
895     }
896   }
897 #endif
898
899   data = gst_adapter_take_internal (adapter, nbytes);
900
901   buffer = gst_buffer_new_wrapped (data, nbytes);
902
903 done:
904   gst_adapter_flush_unchecked (adapter, nbytes);
905
906   return buffer;
907 }
908
909 /**
910  * gst_adapter_take_list:
911  * @adapter: a #GstAdapter
912  * @nbytes: the number of bytes to take
913  *
914  * Returns a #GList of buffers containing the first @nbytes bytes of the
915  * @adapter. The returned bytes will be flushed from the adapter.
916  * When the caller can deal with individual buffers, this function is more
917  * performant because no memory should be copied.
918  *
919  * Caller owns returned list and contained buffers. gst_buffer_unref() each
920  * buffer in the list before freeing the list after usage.
921  *
922  * Returns: (element-type Gst.Buffer) (transfer full): a #GList of buffers
923  *     containing the first @nbytes of the adapter, or #NULL if @nbytes bytes
924  *     are not available
925  */
926 GList *
927 gst_adapter_take_list (GstAdapter * adapter, gsize nbytes)
928 {
929   GQueue queue = G_QUEUE_INIT;
930   GstBuffer *cur;
931   gsize hsize, skip;
932
933   g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
934   g_return_val_if_fail (nbytes <= adapter->size, NULL);
935
936   GST_LOG_OBJECT (adapter, "taking %" G_GSIZE_FORMAT " bytes", nbytes);
937
938   while (nbytes > 0) {
939     cur = adapter->buflist->data;
940     skip = adapter->skip;
941     hsize = MIN (nbytes, gst_buffer_get_size (cur) - skip);
942
943     cur = gst_adapter_take_buffer (adapter, hsize);
944
945     g_queue_push_tail (&queue, cur);
946
947     nbytes -= hsize;
948   }
949   return queue.head;
950 }
951
952 /**
953  * gst_adapter_available:
954  * @adapter: a #GstAdapter
955  *
956  * Gets the maximum amount of bytes available, that is it returns the maximum
957  * value that can be supplied to gst_adapter_map() without that function
958  * returning NULL.
959  *
960  * Returns: number of bytes available in @adapter
961  */
962 gsize
963 gst_adapter_available (GstAdapter * adapter)
964 {
965   g_return_val_if_fail (GST_IS_ADAPTER (adapter), 0);
966
967   return adapter->size;
968 }
969
970 /**
971  * gst_adapter_available_fast:
972  * @adapter: a #GstAdapter
973  *
974  * Gets the maximum number of bytes that are immediately available without
975  * requiring any expensive operations (like copying the data into a
976  * temporary buffer).
977  *
978  * Returns: number of bytes that are available in @adapter without expensive
979  * operations
980  */
981 gsize
982 gst_adapter_available_fast (GstAdapter * adapter)
983 {
984   GstBuffer *cur;
985   gsize size;
986   GSList *g;
987
988   g_return_val_if_fail (GST_IS_ADAPTER (adapter), 0);
989
990   /* no data */
991   if (adapter->size == 0)
992     return 0;
993
994   /* some stuff we already assembled */
995   if (adapter->assembled_len)
996     return adapter->assembled_len;
997
998   /* take the first non-zero buffer */
999   g = adapter->buflist;
1000   while (TRUE) {
1001     cur = g->data;
1002     size = gst_buffer_get_size (cur);
1003     if (size != 0)
1004       break;
1005     g = g_slist_next (g);
1006   }
1007
1008   /* we can quickly get the (remaining) data of the first buffer */
1009   return size - adapter->skip;
1010 }
1011
1012 /**
1013  * gst_adapter_prev_pts:
1014  * @adapter: a #GstAdapter
1015  * @distance: (out) (allow-none): pointer to location for distance, or NULL
1016  *
1017  * Get the pts that was before the current byte in the adapter. When
1018  * @distance is given, the amount of bytes between the pts and the current
1019  * position is returned.
1020  *
1021  * The pts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1022  * the adapter is first created or when it is cleared. This also means that before
1023  * the first byte with a pts is removed from the adapter, the pts
1024  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1025  *
1026  * Returns: The previously seen pts.
1027  */
1028 GstClockTime
1029 gst_adapter_prev_pts (GstAdapter * adapter, guint64 * distance)
1030 {
1031   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1032
1033   if (distance)
1034     *distance = adapter->pts_distance;
1035
1036   return adapter->pts;
1037 }
1038
1039 /**
1040  * gst_adapter_prev_dts:
1041  * @adapter: a #GstAdapter
1042  * @distance: (out) (allow-none): pointer to location for distance, or NULL
1043  *
1044  * Get the dts that was before the current byte in the adapter. When
1045  * @distance is given, the amount of bytes between the dts and the current
1046  * position is returned.
1047  *
1048  * The dts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1049  * the adapter is first created or when it is cleared. This also means that before
1050  * the first byte with a dts is removed from the adapter, the dts
1051  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1052  *
1053  * Returns: The previously seen dts.
1054  */
1055 GstClockTime
1056 gst_adapter_prev_dts (GstAdapter * adapter, guint64 * distance)
1057 {
1058   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1059
1060   if (distance)
1061     *distance = adapter->dts_distance;
1062
1063   return adapter->dts;
1064 }
1065
1066 /**
1067  * gst_adapter_prev_pts_at_offset:
1068  * @adapter: a #GstAdapter
1069  * @offset: the offset in the adapter at which to get timestamp
1070  * @distance: (out) (allow-none): pointer to location for distance, or NULL
1071  *
1072  * Get the pts that was before the byte at offset @offset in the adapter. When
1073  * @distance is given, the amount of bytes between the pts and the current
1074  * position is returned.
1075  *
1076  * The pts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1077  * the adapter is first created or when it is cleared. This also means that before
1078  * the first byte with a pts is removed from the adapter, the pts
1079  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1080  *
1081  * Since: 1.2
1082  * Returns: The previously seen pts at given offset.
1083  */
1084 GstClockTime
1085 gst_adapter_prev_pts_at_offset (GstAdapter * adapter, gsize offset,
1086     guint64 * distance)
1087 {
1088   GstBuffer *cur;
1089   GSList *g;
1090   gsize read_offset = 0;
1091   GstClockTime pts = adapter->pts;
1092
1093   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1094
1095   g = adapter->buflist;
1096
1097   while (g && read_offset < offset + adapter->skip) {
1098     cur = g->data;
1099
1100     read_offset += gst_buffer_get_size (cur);
1101     if (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_PTS (cur))) {
1102       pts = GST_BUFFER_PTS (cur);
1103     }
1104
1105     g = g_slist_next (g);
1106   }
1107
1108   if (distance)
1109     *distance = adapter->dts_distance + offset;
1110
1111   return pts;
1112 }
1113
1114 /**
1115  * gst_adapter_prev_dts_at_offset:
1116  * @adapter: a #GstAdapter
1117  * @offset: the offset in the adapter at which to get timestamp
1118  * @distance: (out) (allow-none): pointer to location for distance, or NULL
1119  *
1120  * Get the dts that was before the byte at offset @offset in the adapter. When
1121  * @distance is given, the amount of bytes between the dts and the current
1122  * position is returned.
1123  *
1124  * The dts is reset to GST_CLOCK_TIME_NONE and the distance is set to 0 when
1125  * the adapter is first created or when it is cleared. This also means that before
1126  * the first byte with a dts is removed from the adapter, the dts
1127  * and distance returned are GST_CLOCK_TIME_NONE and 0 respectively.
1128  *
1129  * Since: 1.2
1130  * Returns: The previously seen dts at given offset.
1131  */
1132 GstClockTime
1133 gst_adapter_prev_dts_at_offset (GstAdapter * adapter, gsize offset,
1134     guint64 * distance)
1135 {
1136   GstBuffer *cur;
1137   GSList *g;
1138   gsize read_offset = 0;
1139   GstClockTime dts = adapter->dts;
1140
1141   g_return_val_if_fail (GST_IS_ADAPTER (adapter), GST_CLOCK_TIME_NONE);
1142
1143   g = adapter->buflist;
1144
1145   while (g && read_offset < offset + adapter->skip) {
1146     cur = g->data;
1147
1148     read_offset += gst_buffer_get_size (cur);
1149     if (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DTS (cur))) {
1150       dts = GST_BUFFER_DTS (cur);
1151     }
1152
1153     g = g_slist_next (g);
1154   }
1155
1156   if (distance)
1157     *distance = adapter->dts_distance + offset;
1158
1159   return dts;
1160 }
1161
1162 /**
1163  * gst_adapter_masked_scan_uint32_peek:
1164  * @adapter: a #GstAdapter
1165  * @mask: mask to apply to data before matching against @pattern
1166  * @pattern: pattern to match (after mask is applied)
1167  * @offset: offset into the adapter data from which to start scanning, returns
1168  *          the last scanned position.
1169  * @size: number of bytes to scan from offset
1170  * @value: pointer to uint32 to return matching data
1171  *
1172  * Scan for pattern @pattern with applied mask @mask in the adapter data,
1173  * starting from offset @offset.  If a match is found, the value that matched
1174  * is returned through @value, otherwise @value is left untouched.
1175  *
1176  * The bytes in @pattern and @mask are interpreted left-to-right, regardless
1177  * of endianness.  All four bytes of the pattern must be present in the
1178  * adapter for it to match, even if the first or last bytes are masked out.
1179  *
1180  * It is an error to call this function without making sure that there is
1181  * enough data (offset+size bytes) in the adapter.
1182  *
1183  * Returns: offset of the first match, or -1 if no match was found.
1184  */
1185 gssize
1186 gst_adapter_masked_scan_uint32_peek (GstAdapter * adapter, guint32 mask,
1187     guint32 pattern, gsize offset, gsize size, guint32 * value)
1188 {
1189   GSList *g;
1190   gsize skip, bsize, i;
1191   guint32 state;
1192   GstMapInfo info;
1193   guint8 *bdata;
1194   GstBuffer *buf;
1195
1196   g_return_val_if_fail (size > 0, -1);
1197   g_return_val_if_fail (offset + size <= adapter->size, -1);
1198   g_return_val_if_fail (((~mask) & pattern) == 0, -1);
1199
1200   /* we can't find the pattern with less than 4 bytes */
1201   if (G_UNLIKELY (size < 4))
1202     return -1;
1203
1204   skip = offset + adapter->skip;
1205
1206   /* first step, do skipping and position on the first buffer */
1207   /* optimistically assume scanning continues sequentially */
1208   if (adapter->scan_entry && (adapter->scan_offset <= skip)) {
1209     g = adapter->scan_entry;
1210     skip -= adapter->scan_offset;
1211   } else {
1212     g = adapter->buflist;
1213     adapter->scan_offset = 0;
1214     adapter->scan_entry = NULL;
1215   }
1216   buf = g->data;
1217   bsize = gst_buffer_get_size (buf);
1218   while (G_UNLIKELY (skip >= bsize)) {
1219     skip -= bsize;
1220     g = g_slist_next (g);
1221     adapter->scan_offset += bsize;
1222     adapter->scan_entry = g;
1223     buf = g->data;
1224     bsize = gst_buffer_get_size (buf);
1225   }
1226   /* get the data now */
1227   if (!gst_buffer_map (buf, &info, GST_MAP_READ))
1228     return -1;
1229
1230   bdata = (guint8 *) info.data + skip;
1231   bsize = info.size - skip;
1232   skip = 0;
1233
1234   /* set the state to something that does not match */
1235   state = ~pattern;
1236
1237   /* now find data */
1238   do {
1239     bsize = MIN (bsize, size);
1240     for (i = 0; i < bsize; i++) {
1241       state = ((state << 8) | bdata[i]);
1242       if (G_UNLIKELY ((state & mask) == pattern)) {
1243         /* we have a match but we need to have skipped at
1244          * least 4 bytes to fill the state. */
1245         if (G_LIKELY (skip + i >= 3)) {
1246           if (G_LIKELY (value))
1247             *value = state;
1248           gst_buffer_unmap (buf, &info);
1249           return offset + skip + i - 3;
1250         }
1251       }
1252     }
1253     size -= bsize;
1254     if (size == 0)
1255       break;
1256
1257     /* nothing found yet, go to next buffer */
1258     skip += bsize;
1259     g = g_slist_next (g);
1260     adapter->scan_offset += info.size;
1261     adapter->scan_entry = g;
1262     gst_buffer_unmap (buf, &info);
1263     buf = g->data;
1264
1265     if (!gst_buffer_map (buf, &info, GST_MAP_READ))
1266       return -1;
1267
1268     bsize = info.size;
1269     bdata = info.data;
1270   } while (TRUE);
1271
1272   gst_buffer_unmap (buf, &info);
1273
1274   /* nothing found */
1275   return -1;
1276 }
1277
1278 /**
1279  * gst_adapter_masked_scan_uint32:
1280  * @adapter: a #GstAdapter
1281  * @mask: mask to apply to data before matching against @pattern
1282  * @pattern: pattern to match (after mask is applied)
1283  * @offset: offset into the adapter data from which to start scanning, returns
1284  *          the last scanned position.
1285  * @size: number of bytes to scan from offset
1286  *
1287  * Scan for pattern @pattern with applied mask @mask in the adapter data,
1288  * starting from offset @offset.
1289  *
1290  * The bytes in @pattern and @mask are interpreted left-to-right, regardless
1291  * of endianness.  All four bytes of the pattern must be present in the
1292  * adapter for it to match, even if the first or last bytes are masked out.
1293  *
1294  * It is an error to call this function without making sure that there is
1295  * enough data (offset+size bytes) in the adapter.
1296  *
1297  * This function calls gst_adapter_masked_scan_uint32_peek() passing NULL
1298  * for value.
1299  *
1300  * Returns: offset of the first match, or -1 if no match was found.
1301  *
1302  * Example:
1303  * <programlisting>
1304  * // Assume the adapter contains 0x00 0x01 0x02 ... 0xfe 0xff
1305  *
1306  * gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x00010203, 0, 256);
1307  * // -> returns 0
1308  * gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x00010203, 1, 255);
1309  * // -> returns -1
1310  * gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x01020304, 1, 255);
1311  * // -> returns 1
1312  * gst_adapter_masked_scan_uint32 (adapter, 0xffff, 0x0001, 0, 256);
1313  * // -> returns -1
1314  * gst_adapter_masked_scan_uint32 (adapter, 0xffff, 0x0203, 0, 256);
1315  * // -> returns 0
1316  * gst_adapter_masked_scan_uint32 (adapter, 0xffff0000, 0x02030000, 0, 256);
1317  * // -> returns 2
1318  * gst_adapter_masked_scan_uint32 (adapter, 0xffff0000, 0x02030000, 0, 4);
1319  * // -> returns -1
1320  * </programlisting>
1321  */
1322 gssize
1323 gst_adapter_masked_scan_uint32 (GstAdapter * adapter, guint32 mask,
1324     guint32 pattern, gsize offset, gsize size)
1325 {
1326   return gst_adapter_masked_scan_uint32_peek (adapter, mask, pattern, offset,
1327       size, NULL);
1328 }