gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
|
2006-05-30 15:53:40 +00:00
|
|
|
* 2005 Wim Taymans <wim@fluendo.com>
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2005-08-05 10:02:44 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstadapter
|
2005-11-09 09:48:16 +00:00
|
|
|
* @short_description: adapts incoming data on a sink pad into chunks of N bytes
|
2005-08-05 10:02:44 +00:00
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* This class is for elements that receive buffers in an undesired size.
|
|
|
|
* While for example raw video contains one image per buffer, the same is not
|
|
|
|
* true for a lot of other formats, especially those that come directly from
|
|
|
|
* a file. So if you have undefined buffer sizes and require a specific size,
|
2005-08-05 10:02:44 +00:00
|
|
|
* this object is for you.
|
|
|
|
*
|
2006-03-15 16:22:26 +00:00
|
|
|
* An adapter is created with gst_adapter_new(). It can be freed again with
|
|
|
|
* g_object_unref().
|
|
|
|
*
|
2005-08-05 10:02:44 +00:00
|
|
|
* The theory of operation is like this: All buffers received are put
|
2005-10-15 15:30:24 +00:00
|
|
|
* into the adapter using gst_adapter_push() and the data is then read back
|
2005-08-05 10:02:44 +00:00
|
|
|
* in chunks of the desired size using gst_adapter_peek(). After the data is
|
2005-11-09 09:48:16 +00:00
|
|
|
* processed, it is freed using gst_adapter_flush().
|
|
|
|
*
|
|
|
|
* For example, a sink pad's chain function that needs to pass data to a library
|
|
|
|
* in 512-byte chunks could be implemented like this:
|
2005-08-05 10:02:44 +00:00
|
|
|
* <programlisting>
|
2005-11-09 09:48:16 +00:00
|
|
|
* static GstFlowReturn
|
|
|
|
* sink_pad_chain (GstPad *pad, GstBuffer *buffer)
|
2005-08-05 10:02:44 +00:00
|
|
|
* {
|
2005-11-09 09:48:16 +00:00
|
|
|
* MyElement *this;
|
|
|
|
* GstAdapter *adapter;
|
|
|
|
* GstFlowReturn ret = GST_FLOW_OK;
|
|
|
|
*
|
2005-11-11 20:12:42 +00:00
|
|
|
* // will give the element an extra ref; remember to drop it
|
2005-11-09 09:48:16 +00:00
|
|
|
* this = MY_ELEMENT (gst_pad_get_parent (pad));
|
|
|
|
* adapter = this->adapter;
|
|
|
|
*
|
2005-08-05 10:02:44 +00:00
|
|
|
* // put buffer into adapter
|
2006-01-27 22:34:51 +00:00
|
|
|
* gst_adapter_push (adapter, buffer);
|
2005-11-09 09:48:16 +00:00
|
|
|
* // while we can read out 512 bytes, process them
|
2006-01-27 22:34:51 +00:00
|
|
|
* while (gst_adapter_available (adapter) >= 512 && ret == GST_FLOW_OK) {
|
2005-11-09 09:48:16 +00:00
|
|
|
* // use flowreturn as an error value
|
2006-01-27 22:34:51 +00:00
|
|
|
* ret = my_library_foo (gst_adapter_peek (adapter, 512));
|
|
|
|
* gst_adapter_flush (adapter, 512);
|
2005-08-05 10:02:44 +00:00
|
|
|
* }
|
2005-11-09 09:48:16 +00:00
|
|
|
*
|
|
|
|
* gst_object_unref (this);
|
|
|
|
* return ret;
|
2005-08-05 10:02:44 +00:00
|
|
|
* }
|
|
|
|
* </programlisting>
|
|
|
|
* For another example, a simple element inside GStreamer that uses GstAdapter
|
|
|
|
* is the libvisual element.
|
|
|
|
*
|
2005-11-09 09:48:16 +00:00
|
|
|
* An element using GstAdapter in its sink pad chain function should ensure that
|
|
|
|
* when the FLUSH_STOP event is received, that any queued data is cleared using
|
|
|
|
* gst_adapter_clear(). Data should also be cleared or processed on EOS and
|
|
|
|
* when changing state from #GST_STATE_PAUSED to #GST_STATE_READY.
|
|
|
|
*
|
2006-03-07 16:21:02 +00:00
|
|
|
* Also check the GST_BUFFER_FLAG_DISCONT flag on the buffer. Some elements might
|
|
|
|
* need to clear the adapter after a discontinuity.
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* A last thing to note is that while GstAdapter is pretty optimized,
|
|
|
|
* merging buffers still might be an operation that requires a memcpy()
|
|
|
|
* operation, and this operation is not the fastest. Because of this, some
|
|
|
|
* functions like gst_adapter_available_fast() are provided to help speed up
|
2005-08-05 10:02:44 +00:00
|
|
|
* such cases should you want to.
|
2005-11-09 09:48:16 +00:00
|
|
|
*
|
|
|
|
* GstAdapter is not MT safe. All operations on an adapter must be serialized by
|
|
|
|
* the caller. This is not normally a problem, however, as the normal use case
|
|
|
|
* of GstAdapter is inside one pad's chain function, in which case access is
|
2006-03-07 16:21:02 +00:00
|
|
|
* serialized via the pad's STREAM_LOCK.
|
2005-11-09 09:48:16 +00:00
|
|
|
*
|
2006-03-07 16:21:02 +00:00
|
|
|
* Note that gst_adapter_push() takes ownership of the buffer passed. Use
|
|
|
|
* gst_buffer_ref() before pushing it into the adapter if you still want to
|
|
|
|
* access the buffer later. The adapter will never modify the data in the
|
|
|
|
* buffer pushed in it.
|
libs/gst/: Documentation updates.
Original commit message from CVS:
* libs/gst/base/gstadapter.c:
* libs/gst/base/gstadapter.h:
* libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_get_position):
* libs/gst/base/gstbasesink.h:
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_default_query), (gst_base_src_default_do_seek),
(gst_base_src_do_seek), (gst_base_src_perform_seek),
(gst_base_src_send_event), (gst_base_src_update_length),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_start):
* libs/gst/base/gstbasesrc.h:
* libs/gst/base/gstbasetransform.h:
* libs/gst/base/gstcollectpads.h:
* libs/gst/base/gstpushsrc.c:
* libs/gst/base/gstpushsrc.h:
* libs/gst/dataprotocol/dataprotocol.c:
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/net/gstnetclientclock.h:
* libs/gst/net/gstnettimeprovider.h:
Documentation updates.
2005-12-18 16:04:41 +00:00
|
|
|
*
|
2006-05-30 15:53:40 +00:00
|
|
|
* Last reviewed on 2006-04-04 (0.10.6).
|
2005-08-05 10:02:44 +00:00
|
|
|
*/
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
|
|
|
#include "gstadapter.h"
|
2006-05-04 15:20:14 +00:00
|
|
|
#include <string.h>
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
|
|
|
/* default size for the assembled data buffer */
|
|
|
|
#define DEFAULT_SIZE 16
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_adapter_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_adapter_debug
|
|
|
|
|
|
|
|
#define _do_init(thing) \
|
2005-11-07 10:13:47 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_adapter_debug, "adapter", 0, "object to splice and merge buffers to desired size")
|
2005-11-09 09:48:16 +00:00
|
|
|
GST_BOILERPLATE_FULL (GstAdapter, gst_adapter, GObject, G_TYPE_OBJECT,
|
|
|
|
_do_init);
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
2005-11-09 09:48:16 +00:00
|
|
|
static void gst_adapter_dispose (GObject * object);
|
|
|
|
static void gst_adapter_finalize (GObject * object);
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
2005-11-09 09:48:16 +00:00
|
|
|
static void
|
|
|
|
gst_adapter_base_init (gpointer g_class)
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
{
|
2005-11-09 09:48:16 +00:00
|
|
|
/* nop */
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_adapter_class_init (GstAdapterClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object->dispose = gst_adapter_dispose;
|
|
|
|
object->finalize = gst_adapter_finalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-08-28 17:45:58 +00:00
|
|
|
gst_adapter_init (GstAdapter * adapter, GstAdapterClass * g_class)
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
{
|
|
|
|
adapter->assembled_data = g_malloc (DEFAULT_SIZE);
|
|
|
|
adapter->assembled_size = DEFAULT_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_adapter_dispose (GObject * object)
|
|
|
|
{
|
|
|
|
GstAdapter *adapter = GST_ADAPTER (object);
|
|
|
|
|
|
|
|
gst_adapter_clear (adapter);
|
|
|
|
|
|
|
|
GST_CALL_PARENT (G_OBJECT_CLASS, dispose, (object));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_adapter_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstAdapter *adapter = GST_ADAPTER (object);
|
|
|
|
|
|
|
|
g_free (adapter->assembled_data);
|
|
|
|
|
|
|
|
GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (object));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_adapter_new:
|
|
|
|
*
|
2006-03-15 16:22:26 +00:00
|
|
|
* Creates a new #GstAdapter. Free with g_object_unref().
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GstAdapter
|
|
|
|
*/
|
|
|
|
GstAdapter *
|
|
|
|
gst_adapter_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GST_TYPE_ADAPTER, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_adapter_clear:
|
2005-11-09 09:48:16 +00:00
|
|
|
* @adapter: a #GstAdapter
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
2005-11-09 09:48:16 +00:00
|
|
|
* Removes all buffers from @adapter.
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_adapter_clear (GstAdapter * adapter)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_ADAPTER (adapter));
|
|
|
|
|
|
|
|
g_slist_foreach (adapter->buflist, (GFunc) gst_mini_object_unref, NULL);
|
|
|
|
g_slist_free (adapter->buflist);
|
|
|
|
adapter->buflist = NULL;
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
adapter->buflist_end = NULL;
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
adapter->size = 0;
|
|
|
|
adapter->skip = 0;
|
|
|
|
adapter->assembled_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_adapter_push:
|
|
|
|
* @adapter: a #GstAdapter
|
2005-11-09 18:41:53 +00:00
|
|
|
* @buf: a #GstBuffer to add to queue in the adapter
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Adds the data from @buf to the data stored inside @adapter and takes
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
* ownership of the buffer.
|
2009-03-04 08:20:43 +00:00
|
|
|
* Empty buffers will be automatically dereferenced and not stored in the
|
|
|
|
* @adapter.
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_adapter_push (GstAdapter * adapter, GstBuffer * buf)
|
|
|
|
{
|
2008-11-13 18:09:45 +00:00
|
|
|
guint size;
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
g_return_if_fail (GST_IS_ADAPTER (adapter));
|
|
|
|
g_return_if_fail (GST_IS_BUFFER (buf));
|
|
|
|
|
2008-11-13 18:09:45 +00:00
|
|
|
size = GST_BUFFER_SIZE (buf);
|
|
|
|
|
2009-03-04 08:20:43 +00:00
|
|
|
if (G_UNLIKELY (size == 0)) {
|
|
|
|
GST_LOG_OBJECT (adapter, "discarding empty buffer");
|
|
|
|
gst_buffer_unref (buf);
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
} else {
|
2009-03-04 08:20:43 +00:00
|
|
|
|
|
|
|
adapter->size += size;
|
|
|
|
|
|
|
|
/* Note: merging buffers at this point is premature. */
|
|
|
|
if (G_UNLIKELY (adapter->buflist == NULL)) {
|
|
|
|
GST_LOG_OBJECT (adapter, "pushing first %u bytes", size);
|
|
|
|
adapter->buflist = adapter->buflist_end = g_slist_append (NULL, buf);
|
|
|
|
} else {
|
|
|
|
/* Otherwise append to the end, and advance our end pointer */
|
|
|
|
GST_LOG_OBJECT (adapter, "pushing %u bytes at end, size now %u", size,
|
|
|
|
adapter->size);
|
|
|
|
adapter->buflist_end = g_slist_append (adapter->buflist_end, buf);
|
|
|
|
adapter->buflist_end = g_slist_next (adapter->buflist_end);
|
|
|
|
}
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal function that copies data into the given buffer, size must be
|
|
|
|
* bigger than the first buffer */
|
|
|
|
static void
|
|
|
|
gst_adapter_peek_into (GstAdapter * adapter, guint8 * data, guint size)
|
|
|
|
{
|
|
|
|
GstBuffer *cur;
|
|
|
|
GSList *cur_list;
|
|
|
|
guint copied, to_copy;
|
|
|
|
|
|
|
|
/* The first buffer might be partly consumed, so need to handle
|
|
|
|
* 'skipped' bytes. */
|
|
|
|
cur = adapter->buflist->data;
|
2009-04-03 10:19:40 +00:00
|
|
|
copied = MIN (GST_BUFFER_SIZE (cur) - adapter->skip, size);
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
memcpy (data, GST_BUFFER_DATA (cur) + adapter->skip, copied);
|
|
|
|
data += copied;
|
|
|
|
|
|
|
|
cur_list = g_slist_next (adapter->buflist);
|
|
|
|
while (copied < size) {
|
|
|
|
g_assert (cur_list);
|
|
|
|
cur = cur_list->data;
|
|
|
|
cur_list = g_slist_next (cur_list);
|
|
|
|
to_copy = MIN (GST_BUFFER_SIZE (cur), size - copied);
|
|
|
|
memcpy (data, GST_BUFFER_DATA (cur), to_copy);
|
|
|
|
data += to_copy;
|
|
|
|
copied += to_copy;
|
|
|
|
}
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
}
|
|
|
|
|
2007-04-13 11:53:00 +00:00
|
|
|
/* Internal method only. Tries to merge buffers at the head of the queue
|
|
|
|
* to form a single larger buffer of size 'size'. Only merges buffers that
|
|
|
|
* where 'gst_buffer_is_span_fast' returns TRUE.
|
|
|
|
*
|
|
|
|
* Returns TRUE if it managed to merge anything.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
gst_adapter_try_to_merge_up (GstAdapter * adapter, guint size)
|
|
|
|
{
|
|
|
|
GstBuffer *cur, *head;
|
|
|
|
GSList *g;
|
|
|
|
|
|
|
|
g = adapter->buflist;
|
|
|
|
if (g == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
head = g->data;
|
|
|
|
g = g_slist_next (g);
|
|
|
|
|
|
|
|
/* How large do we want our head buffer? The requested size, plus whatever's
|
|
|
|
* been skipped already */
|
|
|
|
size += adapter->skip;
|
|
|
|
|
|
|
|
while (g != NULL && GST_BUFFER_SIZE (head) < size) {
|
|
|
|
cur = g->data;
|
|
|
|
if (!gst_buffer_is_span_fast (head, cur))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Merge the head buffer and the next in line */
|
|
|
|
GST_LOG_OBJECT (adapter,
|
|
|
|
"Merging buffers of size %u & %u in search of target %u",
|
|
|
|
GST_BUFFER_SIZE (head), GST_BUFFER_SIZE (cur), size);
|
|
|
|
|
|
|
|
head = gst_buffer_join (head, cur);
|
|
|
|
|
|
|
|
/* Delete the front list item, and store our new buffer in the 2nd list
|
|
|
|
* item */
|
|
|
|
adapter->buflist = g_slist_delete_link (adapter->buflist, adapter->buflist);
|
|
|
|
g->data = head;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
/**
|
|
|
|
* gst_adapter_peek:
|
|
|
|
* @adapter: a #GstAdapter
|
2005-11-09 09:48:16 +00:00
|
|
|
* @size: the number of bytes to peek
|
|
|
|
*
|
|
|
|
* Gets the first @size bytes stored in the @adapter. The returned pointer is
|
|
|
|
* valid until the next function is called on the adapter.
|
|
|
|
*
|
|
|
|
* Note that setting the returned pointer as the data of a #GstBuffer is
|
|
|
|
* incorrect for general-purpose plugins. The reason is that if a downstream
|
|
|
|
* element stores the buffer so that it has access to it outside of the bounds
|
|
|
|
* of its chain function, the buffer will have an invalid data pointer after
|
|
|
|
* your element flushes the bytes. In that case you should use
|
|
|
|
* gst_adapter_take(), which returns a freshly-allocated buffer that you can set
|
2006-05-04 14:19:53 +00:00
|
|
|
* as #GstBuffer malloc_data or the potentially more performant
|
|
|
|
* gst_adapter_take_buffer().
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
2005-11-09 09:48:16 +00:00
|
|
|
* Returns #NULL if @size bytes are not available.
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
2005-11-09 09:48:16 +00:00
|
|
|
* Returns: a pointer to the first @size bytes of data, or NULL.
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
const guint8 *
|
|
|
|
gst_adapter_peek (GstAdapter * adapter, guint size)
|
|
|
|
{
|
|
|
|
GstBuffer *cur;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
|
|
|
|
g_return_val_if_fail (size > 0, NULL);
|
|
|
|
|
2006-05-04 14:19:53 +00:00
|
|
|
/* we don't have enough data, return NULL. This is unlikely
|
2006-05-30 15:53:40 +00:00
|
|
|
* as one usually does an _available() first instead of peeking a
|
2006-05-04 14:19:53 +00:00
|
|
|
* random size. */
|
|
|
|
if (G_UNLIKELY (size > adapter->size))
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* we have enough assembled data, return it */
|
|
|
|
if (adapter->assembled_len >= size)
|
|
|
|
return adapter->assembled_data;
|
|
|
|
|
|
|
|
/* our head buffer has enough data left, return it */
|
|
|
|
cur = adapter->buflist->data;
|
|
|
|
if (GST_BUFFER_SIZE (cur) >= size + adapter->skip)
|
|
|
|
return GST_BUFFER_DATA (cur) + adapter->skip;
|
|
|
|
|
2007-04-13 11:53:00 +00:00
|
|
|
/* We may be able to efficiently merge buffers in our pool to
|
|
|
|
* gather a big enough chunk to return it from the head buffer directly */
|
|
|
|
if (gst_adapter_try_to_merge_up (adapter, size)) {
|
|
|
|
/* Merged something! Check if there's enough avail now */
|
|
|
|
cur = adapter->buflist->data;
|
|
|
|
if (GST_BUFFER_SIZE (cur) >= size + adapter->skip)
|
|
|
|
return GST_BUFFER_DATA (cur) + adapter->skip;
|
|
|
|
}
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
|
2007-04-13 11:53:00 +00:00
|
|
|
/* Gonna need to copy stuff out */
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
if (adapter->assembled_size < size) {
|
|
|
|
adapter->assembled_size = (size / DEFAULT_SIZE + 1) * DEFAULT_SIZE;
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
GST_DEBUG_OBJECT (adapter, "setting size of internal buffer to %u",
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
adapter->assembled_size);
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
g_free (adapter->assembled_data);
|
|
|
|
adapter->assembled_data = g_malloc (adapter->assembled_size);
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
}
|
|
|
|
adapter->assembled_len = size;
|
2006-05-04 14:19:53 +00:00
|
|
|
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
gst_adapter_peek_into (adapter, adapter->assembled_data, size);
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
|
|
|
|
return adapter->assembled_data;
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:50:03 +00:00
|
|
|
/**
|
|
|
|
* gst_adapter_copy:
|
|
|
|
* @adapter: a #GstAdapter
|
|
|
|
* @dest: the memory where to copy to
|
|
|
|
* @offset: the bytes offset in the adapter to start from
|
|
|
|
* @size: the number of bytes to copy
|
|
|
|
*
|
|
|
|
* Copies @size bytes of data starting at @offset out of the buffers
|
|
|
|
* contained in @GstAdapter into an array @dest provided by the caller.
|
|
|
|
*
|
|
|
|
* The array @dest should be large enough to contain @size bytes.
|
|
|
|
* The user should check that the adapter has (@offset + @size) bytes
|
|
|
|
* available before calling this function.
|
|
|
|
*
|
|
|
|
* Since: 0.10.12
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_adapter_copy (GstAdapter * adapter, guint8 * dest, guint offset, guint size)
|
|
|
|
{
|
|
|
|
GSList *g;
|
|
|
|
int skip;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_ADAPTER (adapter));
|
|
|
|
g_return_if_fail (size > 0);
|
|
|
|
|
|
|
|
/* we don't have enough data, return. This is unlikely
|
|
|
|
* as one usually does an _available() first instead of copying a
|
|
|
|
* random size. */
|
|
|
|
if (G_UNLIKELY (offset + size > adapter->size))
|
|
|
|
return;
|
|
|
|
|
|
|
|
skip = adapter->skip;
|
|
|
|
for (g = adapter->buflist; g && size > 0; g = g_slist_next (g)) {
|
|
|
|
GstBuffer *buf;
|
|
|
|
|
|
|
|
buf = g->data;
|
|
|
|
if (offset < GST_BUFFER_SIZE (buf) - skip) {
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = MIN (GST_BUFFER_SIZE (buf) - skip - offset, size);
|
|
|
|
memcpy (dest, GST_BUFFER_DATA (buf) + skip + offset, n);
|
|
|
|
|
|
|
|
dest += n;
|
|
|
|
offset = 0;
|
|
|
|
size -= n;
|
|
|
|
} else {
|
|
|
|
offset -= GST_BUFFER_SIZE (buf) - skip;
|
|
|
|
}
|
|
|
|
skip = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
/**
|
|
|
|
* gst_adapter_flush:
|
|
|
|
* @adapter: a #GstAdapter
|
2005-11-09 09:48:16 +00:00
|
|
|
* @flush: the number of bytes to flush
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
2005-11-09 18:41:53 +00:00
|
|
|
* Flushes the first @flush bytes in the @adapter. The caller must ensure that
|
|
|
|
* at least this many bytes are available.
|
2005-11-09 09:48:16 +00:00
|
|
|
*
|
|
|
|
* See also: gst_adapter_peek().
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_adapter_flush (GstAdapter * adapter, guint flush)
|
|
|
|
{
|
|
|
|
GstBuffer *cur;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_ADAPTER (adapter));
|
|
|
|
g_return_if_fail (flush <= adapter->size);
|
|
|
|
|
gst/: Implement gst_pad_pause/start/stop_task(), take STREAM lock in task function.
Original commit message from CVS:
* gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
(gst_basesink_finish_preroll), (gst_basesink_chain),
(gst_basesink_loop), (gst_basesink_activate),
(gst_basesink_change_state):
* gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
(gst_basesrc_get_range), (gst_basesrc_loop),
(gst_basesrc_activate):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
(gst_real_pad_init), (gst_real_pad_set_property),
(gst_real_pad_get_property), (gst_pad_set_active),
(gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
(gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
(gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
(gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
(gst_pad_event_default_dispatch), (gst_pad_event_default),
(gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
(gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
(gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
(gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
(gst_pad_stop_task):
* gst/gstpad.h:
* gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
(gst_queue_loop), (gst_queue_src_activate):
* gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
(gst_task_get_state):
* gst/gsttask.h:
* gst/schedulers/threadscheduler.c:
(gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
Implement gst_pad_pause/start/stop_task(), take STREAM lock
in task function.
Remove ACTIVE pad flag, use FLUSHING everywhere
Added _pad_chain(), _pad_get_range() to call chain/getrange
functions.
Add locks around IS_FLUSHING when reading.
Take STREAM lock in chain(), get_range() functions so plugins
don't need to take it anymore.
2005-05-25 11:50:11 +00:00
|
|
|
GST_LOG_OBJECT (adapter, "flushing %u bytes", flush);
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
adapter->size -= flush;
|
|
|
|
adapter->assembled_len = 0;
|
|
|
|
while (flush > 0) {
|
|
|
|
cur = adapter->buflist->data;
|
|
|
|
if (GST_BUFFER_SIZE (cur) <= flush + adapter->skip) {
|
|
|
|
/* can skip whole buffer */
|
|
|
|
flush -= GST_BUFFER_SIZE (cur) - adapter->skip;
|
|
|
|
adapter->skip = 0;
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
adapter->buflist =
|
|
|
|
g_slist_delete_link (adapter->buflist, adapter->buflist);
|
|
|
|
if (G_UNLIKELY (adapter->buflist == NULL))
|
|
|
|
adapter->buflist_end = NULL;
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
gst_buffer_unref (cur);
|
|
|
|
} else {
|
|
|
|
adapter->skip += flush;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-16 17:23:55 +00:00
|
|
|
/**
|
|
|
|
* gst_adapter_take:
|
|
|
|
* @adapter: a #GstAdapter
|
2005-11-09 09:48:16 +00:00
|
|
|
* @nbytes: the number of bytes to take
|
2005-08-16 17:23:55 +00:00
|
|
|
*
|
|
|
|
* Returns a freshly allocated buffer containing the first @nbytes bytes of the
|
2006-01-18 18:01:54 +00:00
|
|
|
* @adapter. The returned bytes will be flushed from the adapter.
|
2005-11-09 09:48:16 +00:00
|
|
|
*
|
libs/gst/: Documentation updates.
Original commit message from CVS:
* libs/gst/base/gstadapter.c:
* libs/gst/base/gstadapter.h:
* libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_get_position):
* libs/gst/base/gstbasesink.h:
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_default_query), (gst_base_src_default_do_seek),
(gst_base_src_do_seek), (gst_base_src_perform_seek),
(gst_base_src_send_event), (gst_base_src_update_length),
(gst_base_src_get_range), (gst_base_src_loop),
(gst_base_src_start):
* libs/gst/base/gstbasesrc.h:
* libs/gst/base/gstbasetransform.h:
* libs/gst/base/gstcollectpads.h:
* libs/gst/base/gstpushsrc.c:
* libs/gst/base/gstpushsrc.h:
* libs/gst/dataprotocol/dataprotocol.c:
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/net/gstnetclientclock.h:
* libs/gst/net/gstnettimeprovider.h:
Documentation updates.
2005-12-18 16:04:41 +00:00
|
|
|
* Caller owns returned value. g_free after usage.
|
2005-08-16 17:23:55 +00:00
|
|
|
*
|
2005-11-09 09:48:16 +00:00
|
|
|
* Returns: oven-fresh hot data, or #NULL if @nbytes bytes are not available
|
2005-08-16 17:23:55 +00:00
|
|
|
*/
|
|
|
|
guint8 *
|
|
|
|
gst_adapter_take (GstAdapter * adapter, guint nbytes)
|
|
|
|
{
|
|
|
|
guint8 *data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
|
|
|
|
g_return_val_if_fail (nbytes > 0, NULL);
|
|
|
|
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
/* we don't have enough data, return NULL. This is unlikely
|
|
|
|
* as one usually does an _available() first instead of peeking a
|
|
|
|
* random size. */
|
|
|
|
if (G_UNLIKELY (nbytes > adapter->size))
|
2005-08-16 17:23:55 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
data = g_malloc (nbytes);
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
|
|
|
|
/* we have enough assembled data, copy from there */
|
|
|
|
if (adapter->assembled_len >= nbytes) {
|
|
|
|
GST_LOG_OBJECT (adapter, "taking %u bytes already assembled", nbytes);
|
|
|
|
memcpy (data, adapter->assembled_data, nbytes);
|
|
|
|
} else {
|
|
|
|
GST_LOG_OBJECT (adapter, "taking %u bytes by collection", nbytes);
|
|
|
|
gst_adapter_peek_into (adapter, data, nbytes);
|
|
|
|
}
|
2005-08-16 17:23:55 +00:00
|
|
|
|
|
|
|
gst_adapter_flush (adapter, nbytes);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2006-05-04 14:19:53 +00:00
|
|
|
/**
|
|
|
|
* gst_adapter_take_buffer:
|
|
|
|
* @adapter: a #GstAdapter
|
|
|
|
* @nbytes: the number of bytes to take
|
|
|
|
*
|
|
|
|
* Returns a #GstBuffer containing the first @nbytes bytes of the
|
|
|
|
* @adapter. The returned bytes will be flushed from the adapter.
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
* This function is potentially more performant than gst_adapter_take()
|
|
|
|
* since it can reuse the memory in pushed buffers by subbuffering
|
2006-05-04 14:19:53 +00:00
|
|
|
* or merging.
|
|
|
|
*
|
|
|
|
* Caller owns returned value. gst_buffer_unref() after usage.
|
|
|
|
*
|
|
|
|
* Since: 0.10.6
|
|
|
|
*
|
|
|
|
* Returns: a #GstBuffer containing the first @nbytes of the adapter,
|
|
|
|
* or #NULL if @nbytes bytes are not available
|
|
|
|
*/
|
|
|
|
GstBuffer *
|
|
|
|
gst_adapter_take_buffer (GstAdapter * adapter, guint nbytes)
|
|
|
|
{
|
|
|
|
GstBuffer *buffer;
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
GstBuffer *cur;
|
2009-04-27 08:13:01 +00:00
|
|
|
guint hsize;
|
2006-05-04 14:19:53 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_ADAPTER (adapter), NULL);
|
|
|
|
g_return_val_if_fail (nbytes > 0, NULL);
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (adapter, "taking buffer of %u bytes", nbytes);
|
|
|
|
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
/* we don't have enough data, return NULL. This is unlikely
|
2007-04-13 11:53:00 +00:00
|
|
|
* as one usually does an _available() first instead of grabbing a
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
* random size. */
|
|
|
|
if (G_UNLIKELY (nbytes > adapter->size))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cur = adapter->buflist->data;
|
2009-04-27 08:13:01 +00:00
|
|
|
hsize = GST_BUFFER_SIZE (cur);
|
|
|
|
|
|
|
|
/* our head buffer has enough data left, return it */
|
|
|
|
if (adapter->skip == 0 && hsize == nbytes) {
|
|
|
|
GST_LOG_OBJECT (adapter, "providing buffer of %d bytes as head buffer",
|
|
|
|
nbytes);
|
|
|
|
buffer = gst_buffer_ref (cur);
|
|
|
|
goto done;
|
|
|
|
} else if (hsize >= nbytes + adapter->skip) {
|
2006-11-10 10:50:19 +00:00
|
|
|
GST_LOG_OBJECT (adapter, "providing buffer of %d bytes via sub-buffer",
|
|
|
|
nbytes);
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
buffer = gst_buffer_create_sub (cur, adapter->skip, nbytes);
|
2009-04-27 08:13:01 +00:00
|
|
|
goto done;
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
}
|
|
|
|
|
2007-04-13 11:53:00 +00:00
|
|
|
if (gst_adapter_try_to_merge_up (adapter, nbytes)) {
|
|
|
|
/* Merged something, let's try again for sub-buffering */
|
|
|
|
cur = adapter->buflist->data;
|
|
|
|
if (GST_BUFFER_SIZE (cur) >= nbytes + adapter->skip) {
|
|
|
|
GST_LOG_OBJECT (adapter, "providing buffer of %d bytes via sub-buffer",
|
|
|
|
nbytes);
|
|
|
|
buffer = gst_buffer_create_sub (cur, adapter->skip, nbytes);
|
2009-04-27 08:13:01 +00:00
|
|
|
goto done;
|
2007-04-13 11:53:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-29 15:53:03 +00:00
|
|
|
buffer = gst_buffer_new_and_alloc (nbytes);
|
|
|
|
|
|
|
|
/* we have enough assembled data, copy from there */
|
|
|
|
if (adapter->assembled_len >= nbytes) {
|
|
|
|
GST_LOG_OBJECT (adapter, "taking %u bytes already assembled", nbytes);
|
|
|
|
memcpy (GST_BUFFER_DATA (buffer), adapter->assembled_data, nbytes);
|
|
|
|
} else {
|
|
|
|
GST_LOG_OBJECT (adapter, "taking %u bytes by collection", nbytes);
|
|
|
|
gst_adapter_peek_into (adapter, GST_BUFFER_DATA (buffer), nbytes);
|
|
|
|
}
|
2006-05-04 14:19:53 +00:00
|
|
|
|
2009-04-27 08:13:01 +00:00
|
|
|
done:
|
2007-03-29 15:53:03 +00:00
|
|
|
gst_adapter_flush (adapter, nbytes);
|
2006-05-04 14:19:53 +00:00
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
/**
|
|
|
|
* gst_adapter_available:
|
|
|
|
* @adapter: a #GstAdapter
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Gets the maximum amount of bytes available, that is it returns the maximum
|
|
|
|
* value that can be supplied to gst_adapter_peek() without that function
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
* returning NULL.
|
|
|
|
*
|
2005-11-09 09:48:16 +00:00
|
|
|
* Returns: number of bytes available in @adapter
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
guint
|
|
|
|
gst_adapter_available (GstAdapter * adapter)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_ADAPTER (adapter), 0);
|
|
|
|
|
|
|
|
return adapter->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_adapter_available_fast:
|
|
|
|
* @adapter: a #GstAdapter
|
|
|
|
*
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
* Gets the maximum number of bytes that are immediately available without
|
|
|
|
* requiring any expensive operations (like copying the data into a
|
|
|
|
* temporary buffer).
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*
|
Do some optimisation work in GstAdapter to avoid copies in more cases.
Original commit message from CVS:
* Makefile.am:
* configure.ac:
* libs/gst/base/gstadapter.c: (gst_adapter_clear),
(gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
* libs/gst/base/gstadapter.h:
* tests/check/libs/adapter.c: (create_and_fill_adapter),
(GST_START_TEST), (gst_adapter_suite):
* tests/examples/Makefile.am:
Do some optimisation work in GstAdapter to avoid copies in more cases.
It could still do slightly better by merging buffers when
gst_buffer_is_span_fast is true, but is already faster.
Also, avoid traversing a single-linked list to append each incoming
buffer inside the adapter.
Add simple test app that times the adapter behaviour in different
situations, and extend the unit test to check that bytes enter and
exit the adapter in their original order.
2006-11-09 14:37:38 +00:00
|
|
|
* Returns: number of bytes that are available in @adapter without expensive
|
|
|
|
* operations
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
*/
|
|
|
|
guint
|
|
|
|
gst_adapter_available_fast (GstAdapter * adapter)
|
|
|
|
{
|
2008-05-07 09:47:27 +00:00
|
|
|
GstBuffer *first;
|
|
|
|
guint size;
|
|
|
|
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
g_return_val_if_fail (GST_IS_ADAPTER (adapter), 0);
|
|
|
|
|
2006-05-04 14:19:53 +00:00
|
|
|
/* no buffers, we have no data */
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
if (!adapter->buflist)
|
|
|
|
return 0;
|
2006-05-04 14:19:53 +00:00
|
|
|
|
|
|
|
/* some stuff we already assembled */
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
if (adapter->assembled_len)
|
|
|
|
return adapter->assembled_len;
|
2006-05-04 14:19:53 +00:00
|
|
|
|
2008-05-07 09:47:27 +00:00
|
|
|
/* take the first buffer and its size */
|
|
|
|
first = GST_BUFFER_CAST (adapter->buflist->data);
|
|
|
|
size = GST_BUFFER_SIZE (first);
|
|
|
|
|
2006-05-04 14:19:53 +00:00
|
|
|
/* we cannot have skipped more than the first buffer */
|
2008-05-07 09:47:27 +00:00
|
|
|
g_assert (size > adapter->skip);
|
2006-05-04 14:19:53 +00:00
|
|
|
|
|
|
|
/* we can quickly get the data of the first buffer */
|
2008-05-07 09:47:27 +00:00
|
|
|
return size - adapter->skip;
|
gst/base/: Ported and added adapter to the base classes.
Original commit message from CVS:
* gst/base/Makefile.am:
* gst/base/gstadapter.c: (gst_adapter_base_init),
(gst_adapter_class_init), (gst_adapter_init),
(gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
(gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
(gst_adapter_flush), (gst_adapter_available),
(gst_adapter_available_fast):
* gst/base/gstadapter.h:
Ported and added adapter to the base classes.
2005-05-18 09:55:43 +00:00
|
|
|
}
|