summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/plugins/example.c9
-rw-r--r--gst/autoplug/gstautoplugcache.c10
-rw-r--r--gst/autoplug/gstspideridentity.c6
-rw-r--r--gst/elements/gstaggregator.c11
-rw-r--r--gst/elements/gstfakesink.c5
-rw-r--r--gst/elements/gstfakesrc.c22
-rw-r--r--gst/elements/gstfdsink.c5
-rw-r--r--gst/elements/gstfdsrc.c16
-rw-r--r--gst/elements/gstfilesink.c5
-rw-r--r--gst/elements/gstfilesrc.c14
-rw-r--r--gst/elements/gstidentity.c11
-rw-r--r--gst/elements/gstmd5sink.c5
-rw-r--r--gst/elements/gstmultidisksrc.c8
-rw-r--r--gst/elements/gstmultifilesrc.c8
-rw-r--r--gst/elements/gstpipefilter.c13
-rw-r--r--gst/elements/gstshaper.c6
-rw-r--r--gst/elements/gststatistics.c7
-rw-r--r--gst/elements/gsttee.c7
-rw-r--r--gst/gstbytestream.c2
-rw-r--r--gst/gstpad.c25
-rw-r--r--gst/gstpad.h8
-rw-r--r--gst/gstqueue.c80
-rw-r--r--gst/schedulers/gstbasicscheduler.c50
-rw-r--r--gst/schedulers/gstoptimalscheduler.c202
-rw-r--r--plugins/elements/gstaggregator.c11
-rw-r--r--plugins/elements/gstfakesink.c5
-rw-r--r--plugins/elements/gstfakesrc.c22
-rw-r--r--plugins/elements/gstfdsink.c5
-rw-r--r--plugins/elements/gstfdsrc.c16
-rw-r--r--plugins/elements/gstfilesink.c5
-rw-r--r--plugins/elements/gstfilesrc.c14
-rw-r--r--plugins/elements/gstidentity.c11
-rw-r--r--plugins/elements/gstmd5sink.c5
-rw-r--r--plugins/elements/gstmultidisksrc.c8
-rw-r--r--plugins/elements/gstmultifilesrc.c8
-rw-r--r--plugins/elements/gstpipefilter.c13
-rw-r--r--plugins/elements/gstqueue.c80
-rw-r--r--plugins/elements/gstshaper.c6
-rw-r--r--plugins/elements/gststatistics.c7
-rw-r--r--plugins/elements/gsttee.c7
-rw-r--r--tests/old/examples/plugins/example.c9
41 files changed, 354 insertions, 413 deletions
diff --git a/examples/plugins/example.c b/examples/plugins/example.c
index b707a6000..0bed8f605 100644
--- a/examples/plugins/example.c
+++ b/examples/plugins/example.c
@@ -92,7 +92,7 @@ GST_PAD_TEMPLATE_FACTORY (src_factory,
static void gst_example_class_init (GstExampleClass *klass);
static void gst_example_init (GstExample *example);
-static void gst_example_chain (GstPad *pad, GstBuffer *buf);
+static void gst_example_chain (GstPad *pad, GstData *_data);
static void gst_example_set_property (GObject *object, guint prop_id,
const GValue *value, GParamSpec *pspec);
@@ -227,8 +227,9 @@ gst_example_init(GstExample *example)
* as the buffer provided by the peer element.
*/
static void
-gst_example_chain (GstPad *pad, GstBuffer *buf)
+gst_example_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstExample *example;
GstBuffer *outbuf;
@@ -272,7 +273,7 @@ gst_example_chain (GstPad *pad, GstBuffer *buf)
* in the pipeline, through the element's source pad, which is stored
* in the element's structure.
*/
- gst_pad_push(example->srcpad,outbuf);
+ gst_pad_push(example->srcpad,GST_DATA (outbuf));
/* For fun we'll emit our useless signal here */
g_signal_emit(G_OBJECT (example), gst_example_signals[ASDF], 0,
@@ -280,7 +281,7 @@ gst_example_chain (GstPad *pad, GstBuffer *buf)
/* If we're not doing something, just send the original incoming buffer. */
} else {
- gst_pad_push(example->srcpad,buf);
+ gst_pad_push(example->srcpad,GST_DATA (buf));
}
}
diff --git a/gst/autoplug/gstautoplugcache.c b/gst/autoplug/gstautoplugcache.c
index 5a2080e8a..bf856662a 100644
--- a/gst/autoplug/gstautoplugcache.c
+++ b/gst/autoplug/gstautoplugcache.c
@@ -212,7 +212,7 @@ gst_autoplugcache_loop (GstElement *element)
/* the first time through, the current_playout pointer is going to be NULL */
if (cache->current_playout == NULL) {
/* get a buffer */
- buf = gst_pad_pull (cache->sinkpad);
+ buf = GST_BUFFER (gst_pad_pull (cache->sinkpad));
if (GST_IS_EVENT (buf)) {
gst_pad_event_default (cache->sinkpad, GST_EVENT (buf));
return;
@@ -229,7 +229,7 @@ gst_autoplugcache_loop (GstElement *element)
g_signal_emit (G_OBJECT(cache), gst_autoplugcache_signals[FIRST_BUFFER], 0, buf);
/* send the buffer on its way */
- gst_pad_push (cache->srcpad, buf);
+ gst_pad_push (cache->srcpad, GST_DATA (buf));
}
/* the steady state is where the playout is at the front of the cache */
else if (g_list_previous(cache->current_playout) == NULL) {
@@ -249,7 +249,7 @@ gst_autoplugcache_loop (GstElement *element)
}
/* get a buffer */
- buf = gst_pad_pull (cache->sinkpad);
+ buf = GST_BUFFER (gst_pad_pull (cache->sinkpad));
if (GST_IS_EVENT (buf)) {
gst_pad_event_default (cache->sinkpad, GST_EVENT (buf));
return;
@@ -264,7 +264,7 @@ gst_autoplugcache_loop (GstElement *element)
cache->current_playout = cache->cache;
/* send the buffer on its way */
- gst_pad_push (cache->srcpad, buf);
+ gst_pad_push (cache->srcpad, GST_DATA (buf));
}
/* otherwise we're trundling through existing cached buffers */
@@ -278,7 +278,7 @@ gst_autoplugcache_loop (GstElement *element)
}
/* push that buffer */
- gst_pad_push (cache->srcpad, GST_BUFFER(cache->current_playout->data));
+ gst_pad_push (cache->srcpad, GST_DATA (GST_BUFFER(cache->current_playout->data)));
}
}
diff --git a/gst/autoplug/gstspideridentity.c b/gst/autoplug/gstspideridentity.c
index c54cb1a43..110e97b4e 100644
--- a/gst/autoplug/gstspideridentity.c
+++ b/gst/autoplug/gstspideridentity.c
@@ -186,7 +186,7 @@ gst_spider_identity_chain (GstPad *pad, GstBuffer *buf)
if (conn->current != (GstElement *) conn->src) {
GST_DEBUG ("sending EOS to unconnected element %s from %s",
GST_ELEMENT_NAME (conn->src), GST_ELEMENT_NAME (ident));
- gst_pad_push (conn->src->src, GST_BUFFER (gst_event_new (GST_EVENT_EOS)));
+ gst_pad_push (conn->src->src, GST_DATA (GST_BUFFER (gst_event_new (GST_EVENT_EOS))));
gst_element_set_eos (GST_ELEMENT (conn->src));
}
}
@@ -200,7 +200,7 @@ gst_spider_identity_chain (GstPad *pad, GstBuffer *buf)
if ((ident->src != NULL) && (GST_PAD_PEER (ident->src) != NULL)) {
/* g_print("pushing buffer %p (refcount %d - buffersize %d) to pad %s:%s\n", buf, GST_BUFFER_REFCOUNT (buf), GST_BUFFER_SIZE (buf), GST_DEBUG_PAD_NAME (ident->src)); */
GST_LOG ( "push %p %" G_GINT64_FORMAT, buf, GST_BUFFER_OFFSET (buf));
- gst_pad_push (ident->src, buf);
+ gst_pad_push (ident->src, GST_DATA (buf));
} else if (GST_IS_BUFFER (buf)) {
gst_buffer_unref (buf);
}
@@ -386,7 +386,7 @@ gst_spider_identity_dumb_loop (GstSpiderIdentity *ident)
g_return_if_fail (GST_IS_SPIDER_IDENTITY (ident));
g_assert (ident->sink != NULL);
- buf = gst_pad_pull (ident->sink);
+ buf = GST_BUFFER (gst_pad_pull (ident->sink));
gst_spider_identity_chain (ident->sink, buf);
}
diff --git a/gst/elements/gstaggregator.c b/gst/elements/gstaggregator.c
index 0ac2bd90a..3c3ba5d8a 100644
--- a/gst/elements/gstaggregator.c
+++ b/gst/elements/gstaggregator.c
@@ -92,7 +92,7 @@ static void gst_aggregator_set_property (GObject *object, guint prop_id,
static void gst_aggregator_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_aggregator_chain (GstPad *pad, GstBuffer *buf);
+static void gst_aggregator_chain (GstPad *pad, GstData *_data);
static void gst_aggregator_loop (GstElement *element);
static GstElementClass *parent_class = NULL;
@@ -286,7 +286,7 @@ gst_aggregator_push (GstAggregator *aggregator, GstPad *pad, GstBuffer *buf, guc
g_object_notify (G_OBJECT (aggregator), "last_message");
}
- gst_pad_push (aggregator->srcpad, buf);
+ gst_pad_push (aggregator->srcpad, GST_DATA (buf));
}
static void
@@ -313,7 +313,7 @@ gst_aggregator_loop (GstElement *element)
* and that the peer pad is also enabled.
*/
if (GST_PAD_IS_USABLE (pad)) {
- buf = gst_pad_pull (pad);
+ buf = GST_BUFFER (gst_pad_pull (pad));
debug = "loop";
/* then push it forward */
@@ -328,7 +328,7 @@ gst_aggregator_loop (GstElement *element)
debug = "loop_select";
pad = gst_pad_select (aggregator->sinkpads);
- buf = gst_pad_pull (pad);
+ buf = GST_BUFFER (gst_pad_pull (pad));
gst_aggregator_push (aggregator, pad, buf, debug);
}
@@ -346,8 +346,9 @@ gst_aggregator_loop (GstElement *element)
* Chain a buffer on a pad.
*/
static void
-gst_aggregator_chain (GstPad *pad, GstBuffer *buf)
+gst_aggregator_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstAggregator *aggregator;
g_return_if_fail (pad != NULL);
diff --git a/gst/elements/gstfakesink.c b/gst/elements/gstfakesink.c
index 0050939ae..d9a94a582 100644
--- a/gst/elements/gstfakesink.c
+++ b/gst/elements/gstfakesink.c
@@ -102,7 +102,7 @@ static void gst_fakesink_get_property (GObject *object, guint prop_id,
static GstElementStateReturn
gst_fakesink_change_state (GstElement *element);
-static void gst_fakesink_chain (GstPad *pad, GstBuffer *buf);
+static void gst_fakesink_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
static guint gst_fakesink_signals[LAST_SIGNAL] = { 0 };
@@ -298,8 +298,9 @@ gst_fakesink_get_property (GObject *object, guint prop_id, GValue *value, GParam
}
static void
-gst_fakesink_chain (GstPad *pad, GstBuffer *buf)
+gst_fakesink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstFakeSink *fakesink;
g_return_if_fail (pad != NULL);
diff --git a/gst/elements/gstfakesrc.c b/gst/elements/gstfakesrc.c
index 9d088beac..e992ee50f 100644
--- a/gst/elements/gstfakesrc.c
+++ b/gst/elements/gstfakesrc.c
@@ -170,7 +170,7 @@ static void gst_fakesrc_get_property (GObject *object, guint prop_id,
static GstElementStateReturn gst_fakesrc_change_state (GstElement *element);
-static GstBuffer* gst_fakesrc_get (GstPad *pad);
+static GstData* gst_fakesrc_get (GstPad *pad);
static void gst_fakesrc_loop (GstElement *element);
static GstElementClass *parent_class = NULL;
@@ -734,7 +734,7 @@ gst_fakesrc_create_buffer (GstFakeSrc *src)
return buf;
}
-static GstBuffer *
+static GstData *
gst_fakesrc_get(GstPad *pad)
{
GstFakeSrc *src;
@@ -748,22 +748,22 @@ gst_fakesrc_get(GstPad *pad)
if (src->need_flush) {
src->need_flush = FALSE;
- return GST_BUFFER(gst_event_new (GST_EVENT_FLUSH));
+ return GST_DATA(gst_event_new (GST_EVENT_FLUSH));
}
if (src->buffer_count == src->segment_end) {
if (src->segment_loop) {
- return GST_BUFFER(gst_event_new (GST_EVENT_SEGMENT_DONE));
+ return GST_DATA(gst_event_new (GST_EVENT_SEGMENT_DONE));
}
else {
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA(gst_event_new (GST_EVENT_EOS));
}
}
if (src->rt_num_buffers == 0) {
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA(gst_event_new (GST_EVENT_EOS));
}
else {
if (src->rt_num_buffers > 0)
@@ -772,7 +772,7 @@ gst_fakesrc_get(GstPad *pad)
if (src->eos) {
GST_INFO ( "fakesrc is setting eos on pad");
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA(gst_event_new (GST_EVENT_EOS));
}
buf = gst_fakesrc_create_buffer (src);
@@ -795,7 +795,7 @@ gst_fakesrc_get(GstPad *pad)
GST_LOG_OBJECT (src, "post handoff emit");
}
- return buf;
+ return GST_DATA (buf);
}
/**
@@ -819,10 +819,10 @@ gst_fakesrc_loop(GstElement *element)
while (pads) {
GstPad *pad = GST_PAD (pads->data);
- GstBuffer *buf;
+ GstData *data;
- buf = gst_fakesrc_get (pad);
- gst_pad_push (pad, buf);
+ data = gst_fakesrc_get (pad);
+ gst_pad_push (pad, data);
if (src->eos) {
return;
diff --git a/gst/elements/gstfdsink.c b/gst/elements/gstfdsink.c
index b25f377d8..b3f215912 100644
--- a/gst/elements/gstfdsink.c
+++ b/gst/elements/gstfdsink.c
@@ -61,7 +61,7 @@ static void gst_fdsink_set_property (GObject *object, guint prop_id,
static void gst_fdsink_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_fdsink_chain (GstPad *pad,GstBuffer *buf);
+static void gst_fdsink_chain (GstPad *pad,GstData *_data);
static GstElementClass *parent_class = NULL;
/*static guint gst_fdsink_signals[LAST_SIGNAL] = { 0 };*/
@@ -115,8 +115,9 @@ gst_fdsink_init (GstFdSink *fdsink)
}
static void
-gst_fdsink_chain (GstPad *pad, GstBuffer *buf)
+gst_fdsink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstFdSink *fdsink;
g_return_if_fail (pad != NULL);
diff --git a/gst/elements/gstfdsrc.c b/gst/elements/gstfdsrc.c
index 5b2bc91c2..997039987 100644
--- a/gst/elements/gstfdsrc.c
+++ b/gst/elements/gstfdsrc.c
@@ -71,7 +71,7 @@ static void gst_fdsrc_set_property (GObject *object, guint prop_id,
static void gst_fdsrc_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_fdsrc_get (GstPad *pad);
+static GstData * gst_fdsrc_get (GstPad *pad);
static GstElementClass *parent_class = NULL;
@@ -177,7 +177,7 @@ gst_fdsrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpe
}
}
-static GstBuffer *
+static GstData *
gst_fdsrc_get(GstPad *pad)
{
GstFdSrc *src;
@@ -195,14 +195,14 @@ gst_fdsrc_get(GstPad *pad)
/* if nothing was read, we're in eos */
if (readbytes == 0) {
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
if (readbytes == -1) {
- g_error ("Error reading from file descriptor. Ending stream.\n");
- gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
- }
+ g_error ("Error reading from file descriptor. Ending stream.\n");
+ gst_element_set_eos (GST_ELEMENT (src));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
+ }
GST_BUFFER_OFFSET (buf) = src->curoffset;
GST_BUFFER_SIZE (buf) = readbytes;
@@ -210,5 +210,5 @@ gst_fdsrc_get(GstPad *pad)
src->curoffset += readbytes;
/* we're done, return the buffer */
- return buf;
+ return GST_DATA (buf);
}
diff --git a/gst/elements/gstfilesink.c b/gst/elements/gstfilesink.c
index ac8fb14cc..a3ced9954 100644
--- a/gst/elements/gstfilesink.c
+++ b/gst/elements/gstfilesink.c
@@ -83,7 +83,7 @@ static void gst_filesink_close_file (GstFileSink *sink);
static gboolean gst_filesink_handle_event (GstPad *pad, GstEvent *event);
static gboolean gst_filesink_pad_query (GstPad *pad, GstQueryType type,
GstFormat *format, gint64 *value);
-static void gst_filesink_chain (GstPad *pad,GstBuffer *buf);
+static void gst_filesink_chain (GstPad *pad,GstData *_data);
static GstElementStateReturn gst_filesink_change_state (GstElement *element);
@@ -361,8 +361,9 @@ gst_filesink_handle_event (GstPad *pad, GstEvent *event)
* take the buffer from the pad and write to file if it's open
*/
static void
-gst_filesink_chain (GstPad *pad, GstBuffer *buf)
+gst_filesink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstFileSink *filesink;
g_return_if_fail (pad != NULL);
diff --git a/gst/elements/gstfilesrc.c b/gst/elements/gstfilesrc.c
index 8ceba5883..f0de20d0a 100644
--- a/gst/elements/gstfilesrc.c
+++ b/gst/elements/gstfilesrc.c
@@ -142,7 +142,7 @@ static void gst_filesrc_set_property (GObject *object, guint prop_id,
static void gst_filesrc_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_filesrc_get (GstPad *pad);
+static GstData * gst_filesrc_get (GstPad *pad);
static gboolean gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event);
static gboolean gst_filesrc_srcpad_query (GstPad *pad, GstQueryType type,
GstFormat *format, gint64 *value);
@@ -650,7 +650,7 @@ gst_filesrc_get_read (GstFileSrc *src)
return buf;
}
-static GstBuffer *
+static GstData *
gst_filesrc_get (GstPad *pad)
{
GstFileSrc *src;
@@ -667,13 +667,13 @@ gst_filesrc_get (GstPad *pad)
GST_DEBUG ("filesrc sending discont");
event = gst_event_new_discontinuous (FALSE, GST_FORMAT_BYTES, src->curoffset, NULL);
src->need_flush = FALSE;
- return GST_BUFFER (event);
+ return GST_DATA (event);
}
/* check for flush */
if (src->need_flush) {
src->need_flush = FALSE;
GST_DEBUG ("filesrc sending flush");
- return GST_BUFFER (gst_event_new_flush ());
+ return GST_DATA (gst_event_new_flush ());
}
/* check for EOF */
@@ -681,13 +681,13 @@ gst_filesrc_get (GstPad *pad)
GST_DEBUG ("filesrc eos %" G_GINT64_FORMAT" %" G_GINT64_FORMAT,
src->curoffset, src->filelen);
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
if (src->using_mmap){
- return gst_filesrc_get_mmap (src);
+ return GST_DATA (gst_filesrc_get_mmap (src));
}else{
- return gst_filesrc_get_read (src);
+ return GST_DATA (gst_filesrc_get_read (src));
}
}
diff --git a/gst/elements/gstidentity.c b/gst/elements/gstidentity.c
index df42d70bd..b6b77d6f2 100644
--- a/gst/elements/gstidentity.c
+++ b/gst/elements/gstidentity.c
@@ -70,7 +70,7 @@ static void gst_identity_init (GstIdentity *identity);
static void gst_identity_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_identity_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_identity_chain (GstPad *pad, GstBuffer *buf);
+static void gst_identity_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
static guint gst_identity_signals[LAST_SIGNAL] = { 0 };
@@ -224,8 +224,9 @@ gst_identity_init (GstIdentity *identity)
}
static void
-gst_identity_chain (GstPad *pad, GstBuffer *buf)
+gst_identity_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstIdentity *identity;
guint i;
@@ -286,7 +287,7 @@ gst_identity_chain (GstPad *pad, GstBuffer *buf)
if (i>1)
gst_buffer_ref (buf);
- gst_pad_push (identity->srcpad, buf);
+ gst_pad_push (identity->srcpad, GST_DATA (buf));
if (identity->sleep_time)
g_usleep (identity->sleep_time);
@@ -304,7 +305,7 @@ gst_identity_loop (GstElement *element)
identity = GST_IDENTITY (element);
- buf = gst_pad_pull (identity->sinkpad);
+ buf = GST_BUFFER (gst_pad_pull (identity->sinkpad));
if (GST_IS_EVENT (buf)) {
GstEvent *event = GST_EVENT (buf);
@@ -316,7 +317,7 @@ gst_identity_loop (GstElement *element)
}
}
else {
- gst_identity_chain (identity->sinkpad, buf);
+ gst_identity_chain (identity->sinkpad, GST_DATA (buf));
}
}
diff --git a/gst/elements/gstmd5sink.c b/gst/elements/gstmd5sink.c
index e5781506b..114d78daf 100644
--- a/gst/elements/gstmd5sink.c
+++ b/gst/elements/gstmd5sink.c
@@ -63,7 +63,7 @@ static void gst_md5sink_init (GstMD5Sink *md5sink);
static void gst_md5sink_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_md5sink_chain (GstPad *pad, GstBuffer *buf);
+static void gst_md5sink_chain (GstPad *pad, GstData *_data);
static GstElementStateReturn gst_md5sink_change_state (GstElement *element);
/* variables */
@@ -489,8 +489,9 @@ gst_md5sink_get_property (GObject *object, guint prop_id, GValue *value, GParamS
}
static void
-gst_md5sink_chain (GstPad *pad, GstBuffer *buf)
+gst_md5sink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstMD5Sink *md5sink;
g_return_if_fail (pad != NULL);
diff --git a/gst/elements/gstmultidisksrc.c b/gst/elements/gstmultidisksrc.c
index 5a27bdf3a..c2a0e6fdb 100644
--- a/gst/elements/gstmultidisksrc.c
+++ b/gst/elements/gstmultidisksrc.c
@@ -63,7 +63,7 @@ static void gst_multidisksrc_init (GstMultiDiskSrc *disksrc);
static void gst_multidisksrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_multidisksrc_get (GstPad *pad);
+static GstData * gst_multidisksrc_get (GstPad *pad);
/*static GstBuffer * gst_multidisksrc_get_region (GstPad *pad,GstRegionType type,guint64 offset,guint64 len);*/
static GstElementStateReturn gst_multidisksrc_change_state (GstElement *element);
@@ -195,7 +195,7 @@ gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GP
*
* Push a new buffer from the disksrc at the current offset.
*/
-static GstBuffer *
+static GstData *
gst_multidisksrc_get (GstPad *pad)
{
GstMultiDiskSrc *src;
@@ -209,7 +209,7 @@ gst_multidisksrc_get (GstPad *pad)
gst_multidisksrc_close_file(src);
if (!src->listptr) {
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
list = src->listptr;
@@ -240,7 +240,7 @@ gst_multidisksrc_get (GstPad *pad)
}
/* we're done, return the buffer */
- return buf;
+ return GST_DATA (buf);
}
/* open the file and mmap it, necessary to go to READY state */
diff --git a/gst/elements/gstmultifilesrc.c b/gst/elements/gstmultifilesrc.c
index 5a27bdf3a..c2a0e6fdb 100644
--- a/gst/elements/gstmultifilesrc.c
+++ b/gst/elements/gstmultifilesrc.c
@@ -63,7 +63,7 @@ static void gst_multidisksrc_init (GstMultiDiskSrc *disksrc);
static void gst_multidisksrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_multidisksrc_get (GstPad *pad);
+static GstData * gst_multidisksrc_get (GstPad *pad);
/*static GstBuffer * gst_multidisksrc_get_region (GstPad *pad,GstRegionType type,guint64 offset,guint64 len);*/
static GstElementStateReturn gst_multidisksrc_change_state (GstElement *element);
@@ -195,7 +195,7 @@ gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GP
*
* Push a new buffer from the disksrc at the current offset.
*/
-static GstBuffer *
+static GstData *
gst_multidisksrc_get (GstPad *pad)
{
GstMultiDiskSrc *src;
@@ -209,7 +209,7 @@ gst_multidisksrc_get (GstPad *pad)
gst_multidisksrc_close_file(src);
if (!src->listptr) {
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
list = src->listptr;
@@ -240,7 +240,7 @@ gst_multidisksrc_get (GstPad *pad)
}
/* we're done, return the buffer */
- return buf;
+ return GST_DATA (buf);
}
/* open the file and mmap it, necessary to go to READY state */
diff --git a/gst/elements/gstpipefilter.c b/gst/elements/gstpipefilter.c
index 65a2a7fc2..e31e0e255 100644
--- a/gst/elements/gstpipefilter.c
+++ b/gst/elements/gstpipefilter.c
@@ -68,8 +68,8 @@ static void gst_pipefilter_init (GstPipefilter *pipefilter);
static void gst_pipefilter_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_pipefilter_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstBuffer* gst_pipefilter_get (GstPad *pad);
-static void gst_pipefilter_chain (GstPad *pad, GstBuffer *buf);
+static GstData* gst_pipefilter_get (GstPad *pad);
+static void gst_pipefilter_chain (GstPad *pad, GstData *_data);
static gboolean gst_pipefilter_handle_event (GstPad *pad, GstEvent *event);
static GstElementStateReturn gst_pipefilter_change_state (GstElement *element);
@@ -155,7 +155,7 @@ gst_pipefilter_handle_event (GstPad *pad, GstEvent *event)
return TRUE;
}
-static GstBuffer*
+static GstData*
gst_pipefilter_get (GstPad *pad)
{
GstPipefilter *pipefilter;
@@ -184,7 +184,7 @@ gst_pipefilter_get (GstPad *pad)
}
/* if we didn't get as many bytes as we asked for, we're at EOF */
if (readbytes == 0) {
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
@@ -192,12 +192,13 @@ gst_pipefilter_get (GstPad *pad)
GST_BUFFER_SIZE(newbuf) = readbytes;
pipefilter->curoffset += readbytes;
- return newbuf;
+ return GST_DATA (newbuf);
}
static void
-gst_pipefilter_chain (GstPad *pad,GstBuffer *buf)
+gst_pipefilter_chain (GstPad *pad,GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstPipefilter *pipefilter;
glong writebytes;
guchar *data;
diff --git a/gst/elements/gstshaper.c b/gst/elements/gstshaper.c
index 7d163e25c..57fcf561b 100644
--- a/gst/elements/gstshaper.c
+++ b/gst/elements/gstshaper.c
@@ -286,14 +286,14 @@ gst_shaper_loop (GstElement *element)
if (connection->buffer == NULL && GST_PAD_IS_USABLE (connection->sinkpad)) {
GstBuffer *buffer;
- buffer = gst_pad_pull (connection->sinkpad);
+ buffer = GST_BUFFER (gst_pad_pull (connection->sinkpad));
/* events are simply pushed ASAP */
if (GST_IS_EVENT (buffer)) {
/* save event type as it will be unreffed after the next push */
GstEventType type = GST_EVENT_TYPE (buffer);
- gst_pad_push (connection->srcpad, buffer);
+ gst_pad_push (connection->srcpad, GST_DATA (buffer));
switch (type) {
/* on EOS we disable the pad so that we don't pull on
@@ -322,7 +322,7 @@ gst_shaper_loop (GstElement *element)
}
/* if we have a connection with a buffer, push it */
if (min != NULL && min->buffer) {
- gst_pad_push (min->srcpad, min->buffer);
+ gst_pad_push (min->srcpad, GST_DATA (min->buffer));
min->buffer = NULL;
/* since we pushed a buffer, it's not EOS */
eos = FALSE;
diff --git a/gst/elements/gststatistics.c b/gst/elements/gststatistics.c
index a18e64b2c..3cbcebc35 100644
--- a/gst/elements/gststatistics.c
+++ b/gst/elements/gststatistics.c
@@ -67,7 +67,7 @@ static void gst_statistics_init (GstStatistics *statistics);
static void gst_statistics_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_statistics_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_statistics_chain (GstPad *pad, GstBuffer *buf);
+static void gst_statistics_chain (GstPad *pad, GstData *_data);
static void gst_statistics_reset (GstStatistics *statistics);
static void gst_statistics_print (GstStatistics *statistics);
@@ -256,8 +256,9 @@ gst_statistics_print (GstStatistics *statistics)
}
static void
-gst_statistics_chain (GstPad *pad, GstBuffer *buf)
+gst_statistics_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstStatistics *statistics;
gboolean update = FALSE;
@@ -313,7 +314,7 @@ gst_statistics_chain (GstPad *pad, GstBuffer *buf)
gst_statistics_print(statistics);
}
}
- gst_pad_push (statistics->srcpad, buf);
+ gst_pad_push (statistics->srcpad, GST_DATA (buf));
}
static void
diff --git a/gst/elements/gsttee.c b/gst/elements/gsttee.c
index f29a258ca..bfc4f8fa2 100644
--- a/gst/elements/gsttee.c
+++ b/gst/elements/gsttee.c
@@ -71,7 +71,7 @@ static void gst_tee_set_property (GObject *object, guint prop_id,
static void gst_tee_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_tee_chain (GstPad *pad, GstBuffer *buf);
+static void gst_tee_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
@@ -342,8 +342,9 @@ gst_tee_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec
* Chain a buffer on a pad.
*/
static void
-gst_tee_chain (GstPad *pad, GstBuffer *buf)
+gst_tee_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstTee *tee;
const GList *pads;
@@ -373,7 +374,7 @@ gst_tee_chain (GstPad *pad, GstBuffer *buf)
}
if (GST_PAD_IS_USABLE (outpad))
- gst_pad_push (outpad, buf);
+ gst_pad_push (outpad, GST_DATA (buf));
else
gst_buffer_unref (buf);
}
diff --git a/gst/gstbytestream.c b/gst/gstbytestream.c
index fc3c3a4e1..849838d86 100644
--- a/gst/gstbytestream.c
+++ b/gst/gstbytestream.c
@@ -150,7 +150,7 @@ gst_bytestream_get_next_buf (GstByteStream *bs)
return FALSE;
GST_DEBUG ("get_next_buf: pulling buffer");
- nextbuf = gst_pad_pull (bs->pad);
+ nextbuf = GST_BUFFER (gst_pad_pull (bs->pad));
if (!nextbuf)
return FALSE;
diff --git a/gst/gstpad.c b/gst/gstpad.c
index 549ebf862..4387e307f 100644
--- a/gst/gstpad.c
+++ b/gst/gstpad.c
@@ -2302,15 +2302,14 @@ gst_ghost_pad_save_thyself (GstPad *pad, xmlNodePtr parent)
/**
* gst_pad_push:
* @pad: a #GstPad to push the buffer out of.
- * @buf: the #GstBuffer to push.
+ * @data: the #GstData to push.
*
- * Pushes a buffer to the peer of the pad.
+ * Pushes a buffer or an event to the peer of the pad.
*/
void
-gst_pad_push (GstPad *pad, GstBuffer *buf)
+gst_pad_push (GstPad *pad, GstData *data)
{
GstRealPad *peer;
- GstData *data = GST_DATA(buf);
g_assert (GST_IS_PAD (pad));
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, pad, "pushing");
@@ -2342,7 +2341,7 @@ gst_pad_push (GstPad *pad, GstBuffer *buf)
if (!gst_probe_dispatcher_dispatch (&peer->probedisp, &data))
return;
- (peer->chainhandler) (GST_PAD_CAST (peer), (GstBuffer *)data);
+ (peer->chainhandler) (GST_PAD_CAST (peer), data);
return;
}
else {
@@ -2364,11 +2363,11 @@ gst_pad_push (GstPad *pad, GstBuffer *buf)
* gst_pad_pull:
* @pad: a #GstPad to pull a buffer from.
*
- * Pulls a buffer from the peer pad.
+ * Pulls an event or a buffer from the peer pad.
*
- * Returns: a new #GstBuffer from the peer pad.
+ * Returns: a new #GstData from the peer pad.
*/
-GstBuffer*
+GstData*
gst_pad_pull (GstPad *pad)
{
GstRealPad *peer;
@@ -2376,7 +2375,7 @@ gst_pad_pull (GstPad *pad)
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, pad, "pulling");
g_return_val_if_fail (GST_PAD_DIRECTION (pad) == GST_PAD_SINK,
- GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT)));
+ GST_DATA (gst_event_new (GST_EVENT_INTERRUPT)));
peer = GST_RPAD_PEER (pad);
@@ -2396,12 +2395,12 @@ restart:
GST_DEBUG_FUNCPTR_NAME (peer->gethandler),
GST_DEBUG_PAD_NAME (peer));
- data = GST_DATA((peer->gethandler) (GST_PAD_CAST (peer)));
+ data = (peer->gethandler) (GST_PAD_CAST (peer));
if (data) {
if (!gst_probe_dispatcher_dispatch (&peer->probedisp, &data))
goto restart;
- return GST_BUFFER(data);
+ return data;
}
/* no null buffers allowed */
@@ -2416,7 +2415,7 @@ restart:
GST_DEBUG_PAD_NAME (pad), GST_DEBUG_PAD_NAME (peer));
}
}
- return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
+ return GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
}
/**
@@ -2891,7 +2890,7 @@ gst_pad_event_default_dispatch (GstPad *pad, GstElement *element,
if (GST_PAD_DIRECTION (eventpad) == GST_PAD_SRC) {
/* increase the refcount */
gst_event_ref (event);
- gst_pad_push (eventpad, GST_BUFFER (event));
+ gst_pad_push (eventpad, GST_DATA (event));
}
else {
GstPad *peerpad = GST_PAD_CAST (GST_RPAD_PEER (eventpad));
diff --git a/gst/gstpad.h b/gst/gstpad.h
index 6859b58ac..78c11b0a5 100644
--- a/gst/gstpad.h
+++ b/gst/gstpad.h
@@ -133,8 +133,8 @@ typedef enum {
/* this defines the functions used to chain buffers
* pad is the sink pad (so the same chain function can be used for N pads)
* buf is the buffer being passed */
-typedef void (*GstPadChainFunction) (GstPad *pad,GstBuffer *buf);
-typedef GstBuffer* (*GstPadGetFunction) (GstPad *pad);
+typedef void (*GstPadChainFunction) (GstPad *pad,GstData *data);
+typedef GstData* (*GstPadGetFunction) (GstPad *pad);
typedef gboolean (*GstPadEventFunction) (GstPad *pad, GstEvent *event);
typedef gboolean (*GstPadConvertFunction) (GstPad *pad,
GstFormat src_format, gint64 src_value,
@@ -470,8 +470,8 @@ gboolean gst_pad_recalc_allowed_caps (GstPad *pad);
gboolean gst_pad_recover_caps_error (GstPad *pad, GstCaps *allowed);
/* data passing functions */
-void gst_pad_push (GstPad *pad, GstBuffer *buf);
-GstBuffer* gst_pad_pull (GstPad *pad);
+void gst_pad_push (GstPad *pad, GstData *data);
+GstData* gst_pad_pull (GstPad *pad);
gboolean gst_pad_send_event (GstPad *pad, GstEvent *event);
gboolean gst_pad_event_default (GstPad *pad, GstEvent *event);
GstPad* gst_pad_select (GList *padlist);
diff --git a/gst/gstqueue.c b/gst/gstqueue.c
index b20163968..c1924242e 100644
--- a/gst/gstqueue.c
+++ b/gst/gstqueue.c
@@ -72,8 +72,8 @@ static void gst_queue_set_property (GObject *object, guint prop_id,
static void gst_queue_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_queue_chain (GstPad *pad, GstBuffer *buf);
-static GstBuffer * gst_queue_get (GstPad *pad);
+static void gst_queue_chain (GstPad *pad, GstData *data);
+static GstData * gst_queue_get (GstPad *pad);
static GstBufferPool* gst_queue_get_bufferpool (GstPad *pad);
static gboolean gst_queue_handle_src_event (GstPad *pad, GstEvent *event);
@@ -300,13 +300,13 @@ gst_queue_locked_flush (GstQueue *queue)
}
static void
-gst_queue_chain (GstPad *pad, GstBuffer *buf)
+gst_queue_chain (GstPad *pad, GstData *data)
{
GstQueue *queue;
g_return_if_fail (pad != NULL);
g_return_if_fail (GST_IS_PAD (pad));
- g_return_if_fail (buf != NULL);
+ g_return_if_fail (data != NULL);
queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
@@ -319,33 +319,35 @@ gst_queue_chain (GstPad *pad, GstBuffer *buf)
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "event sent\n");
}
g_async_queue_unlock(queue->events);
-
+
restart:
/* we have to lock the queue since we span threads */
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "locking t:%p", g_thread_self ());
g_mutex_lock (queue->qlock);
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "locked t:%p", g_thread_self ());
-
+
/* assume don't need to flush this buffer when the queue is filled */
queue->flush = FALSE;
-
- if (GST_IS_EVENT (buf)) {
- switch (GST_EVENT_TYPE (buf)) {
+
+ if (GST_IS_EVENT (data)) {
+ switch (GST_EVENT_TYPE (data)) {
case GST_EVENT_FLUSH:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
gst_queue_locked_flush (queue);
break;
case GST_EVENT_EOS:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "eos in on %s %d\n",
- GST_ELEMENT_NAME (queue), queue->level_buffers);
+ GST_ELEMENT_NAME (queue), queue->level_buffers);
break;
default:
/* we put the event in the queue, we don't have to act ourselves */
break;
}
}
-
- GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "adding buffer %p of size %d",buf,GST_BUFFER_SIZE(buf));
+
+ if (GST_IS_BUFFER (data))
+ GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue,
+ "adding buffer %p of size %d", data, GST_BUFFER_SIZE (data));
if (queue->level_buffers == queue->size_buffers) {
g_mutex_unlock (queue->qlock);
@@ -358,10 +360,10 @@ restart:
/* if we leak on the upstream side, drop the current buffer */
if (queue->leaky == GST_QUEUE_LEAK_UPSTREAM) {
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
- if (GST_IS_EVENT (buf))
+ if (GST_IS_EVENT (data))
fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
GST_ELEMENT_NAME(GST_ELEMENT(queue)),
- GST_EVENT_TYPE(GST_EVENT(buf)));
+ GST_EVENT_TYPE(GST_EVENT(data)));
/* now we have to clean up and exit right away */
g_mutex_unlock (queue->qlock);
goto out_unref;
@@ -369,21 +371,23 @@ restart:
/* otherwise we have to push a buffer off the other end */
else {
gpointer front;
- GstBuffer *leakbuf;
+ GstData *leak;
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on downstream end");
front = g_queue_pop_head (queue->queue);
- leakbuf = (GstBuffer *)(front);
+ leak = GST_DATA (front);
- if (GST_IS_EVENT (leakbuf)) {
+ queue->level_buffers--;
+ if (GST_IS_EVENT (leak)) {
fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
GST_ELEMENT_NAME(GST_ELEMENT(queue)),
- GST_EVENT_TYPE(GST_EVENT(leakbuf)));
- }
- queue->level_buffers--;
- queue->level_bytes -= GST_BUFFER_SIZE(leakbuf);
- gst_data_unref (GST_DATA (leakbuf));
+ GST_EVENT_TYPE(GST_EVENT(leak)));
+ } else {
+ queue->level_bytes -= GST_BUFFER_SIZE(leak);
+ }
+
+ gst_data_unref (leak);
}
}
@@ -412,7 +416,7 @@ restart:
/* try to signal to resolve the error */
if (!queue->may_deadlock) {
g_mutex_unlock (queue->qlock);
- gst_data_unref (GST_DATA (buf));
+ gst_data_unref (data);
gst_element_error (GST_ELEMENT (queue), "deadlock found, source pad elements are shut down");
/* we don't want to goto out_unref here, since we want to clean up before calling gst_element_error */
return;
@@ -428,14 +432,15 @@ restart:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "got not_full signal");
}
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "post full wait, level:%d/%d buffers, %d bytes",
- queue->level_buffers, queue->size_buffers, queue->level_bytes);
+ queue->level_buffers, queue->size_buffers, queue->level_bytes);
}
/* put the buffer on the tail of the list */
- g_queue_push_tail (queue->queue, buf);
+ g_queue_push_tail (queue->queue, data);
queue->level_buffers++;
- queue->level_bytes += GST_BUFFER_SIZE(buf);
+ if (GST_IS_BUFFER (data))
+ queue->level_bytes += GST_BUFFER_SIZE (data);
/* this assertion _has_ to hold */
g_assert (queue->queue->length == queue->level_buffers);
@@ -451,15 +456,15 @@ restart:
return;
out_unref:
- gst_data_unref (GST_DATA (buf));
+ gst_data_unref (data);
return;
}
-static GstBuffer *
+static GstData *
gst_queue_get (GstPad *pad)
{
GstQueue *queue;
- GstBuffer *buf = NULL;
+ GstData *data = NULL;
gpointer front;
g_assert(pad != NULL);
@@ -486,7 +491,7 @@ restart:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "interrupted!!");
g_mutex_unlock (queue->qlock);
if (gst_scheduler_interrupt (gst_pad_get_scheduler (queue->srcpad), GST_ELEMENT (queue)))
- return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
+ return GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
goto restart;
}
if (GST_STATE (queue) != GST_STATE_PLAYING) {
@@ -512,7 +517,7 @@ restart:
if (!g_cond_timed_wait (queue->not_empty, queue->qlock, &timeout)){
g_mutex_unlock (queue->qlock);
g_warning ("filler");
- return GST_BUFFER(gst_event_new_filler());
+ return GST_DATA (gst_event_new_filler());
}
}
else {
@@ -524,11 +529,12 @@ restart:
queue->level_buffers, queue->size_buffers, queue->level_bytes);
front = g_queue_pop_head (queue->queue);
- buf = (GstBuffer *)(front);
- GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "retrieved buffer %p from queue", buf);
+ data = GST_DATA (front);
+ GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "retrieved data %p from queue", data);
queue->level_buffers--;
- queue->level_bytes -= GST_BUFFER_SIZE(buf);
+ if (GST_IS_BUFFER (data))
+ queue->level_bytes -= GST_BUFFER_SIZE (data);
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "(%s:%s)- level:%d/%d buffers, %d bytes",
GST_DEBUG_PAD_NAME(pad),
@@ -543,8 +549,8 @@ restart:
g_mutex_unlock (queue->qlock);
/* FIXME where should this be? locked? */
- if (GST_IS_EVENT(buf)) {
- GstEvent *event = GST_EVENT(buf);
+ if (GST_IS_EVENT (data)) {
+ GstEvent *event = GST_EVENT (data);
switch (GST_EVENT_TYPE(event)) {
case GST_EVENT_EOS:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "queue \"%s\" eos", GST_ELEMENT_NAME (queue));
@@ -555,7 +561,7 @@ restart:
}
}
- return buf;
+ return data;
}
diff --git a/gst/schedulers/gstbasicscheduler.c b/gst/schedulers/gstbasicscheduler.c
index 4470b51e5..3fd64b754 100644
--- a/gst/schedulers/gstbasicscheduler.c
+++ b/gst/schedulers/gstbasicscheduler.c
@@ -35,7 +35,7 @@ GST_DEBUG_CATEGORY_STATIC(debug_scheduler);
typedef struct _GstSchedulerChain GstSchedulerChain;
#define GST_ELEMENT_THREADSTATE(elem) (cothread*) (GST_ELEMENT_CAST (elem)->sched_private)
-#define GST_RPAD_BUFPEN(pad) (GstBuffer*) (GST_REAL_PAD_CAST(pad)->sched_private)
+#define GST_RPAD_BUFPEN(pad) (GstData*) (GST_REAL_PAD_CAST(pad)->sched_private)
#define GST_ELEMENT_COTHREAD_STOPPING GST_ELEMENT_SCHEDULER_PRIVATE1
#define GST_ELEMENT_IS_COTHREAD_STOPPING(element) GST_FLAG_IS_SET((element), GST_ELEMENT_COTHREAD_STOPPING)
@@ -333,19 +333,19 @@ gst_basic_scheduler_chain_wrapper (int argc, char **argv)
if (GST_RPAD_DIRECTION (realpad) == GST_PAD_SINK &&
GST_PAD_IS_LINKED (realpad)) {
- GstBuffer *buf;
+ GstData *data;
GST_CAT_DEBUG (debug_dataflow, "pulling data from %s:%s", name,
GST_PAD_NAME (pad));
- buf = gst_pad_pull (pad);
- if (buf) {
- if (GST_IS_EVENT (buf) && !GST_ELEMENT_IS_EVENT_AWARE (element)) {
- gst_pad_send_event (pad, GST_EVENT (buf));
+ data = gst_pad_pull (pad);
+ if (data) {
+ if (GST_IS_EVENT (data) && !GST_ELEMENT_IS_EVENT_AWARE (element)) {
+ gst_pad_send_event (pad, GST_EVENT (data));
}
else {
GST_CAT_DEBUG (debug_dataflow, "calling chain function of %s:%s %p",
- name, GST_PAD_NAME (pad), buf);
- GST_RPAD_CHAINFUNC (realpad) (pad, buf);
+ name, GST_PAD_NAME (pad), data);
+ GST_RPAD_CHAINFUNC (realpad) (pad, data);
GST_CAT_DEBUG (debug_dataflow,
"calling chain function of element %s done", name);
}
@@ -377,7 +377,7 @@ gst_basic_scheduler_src_wrapper (int argc, char **argv)
GstElement *element = GST_ELEMENT_CAST (argv);
GList *pads;
GstRealPad *realpad;
- GstBuffer *buf = NULL;
+ GstData *data = NULL;
G_GNUC_UNUSED const gchar *name = GST_ELEMENT_NAME (element);
GST_DEBUG ("entering src wrapper of element %s", name);
@@ -395,11 +395,11 @@ gst_basic_scheduler_src_wrapper (int argc, char **argv)
if (GST_RPAD_DIRECTION (realpad) == GST_PAD_SRC && GST_PAD_IS_USABLE (realpad)) {
GST_CAT_DEBUG (debug_dataflow, "calling _getfunc for %s:%s", GST_DEBUG_PAD_NAME (realpad));
g_return_val_if_fail (GST_RPAD_GETFUNC (realpad) != NULL, 0);
- buf = GST_RPAD_GETFUNC (realpad) (GST_PAD_CAST (realpad));
- if (buf) {
+ data = GST_RPAD_GETFUNC (realpad) (GST_PAD_CAST (realpad));
+ if (data) {
GST_CAT_DEBUG (debug_dataflow, "calling gst_pad_push on pad %s:%s %p",
- GST_DEBUG_PAD_NAME (realpad), buf);
- gst_pad_push (GST_PAD_CAST (realpad), buf);
+ GST_DEBUG_PAD_NAME (realpad), data);
+ gst_pad_push (GST_PAD_CAST (realpad), data);
}
}
}
@@ -419,7 +419,7 @@ gst_basic_scheduler_src_wrapper (int argc, char **argv)
}
static void
-gst_basic_scheduler_chainhandler_proxy (GstPad * pad, GstBuffer * buf)
+gst_basic_scheduler_chainhandler_proxy (GstPad * pad, GstData * data)
{
gint loop_count = 100;
GstElement *parent;
@@ -429,7 +429,7 @@ gst_basic_scheduler_chainhandler_proxy (GstPad * pad, GstBuffer * buf)
peer = GST_RPAD_PEER (pad);
GST_DEBUG ("entered chainhandler proxy of %s:%s", GST_DEBUG_PAD_NAME (pad));
- GST_CAT_DEBUG (debug_dataflow, "putting buffer %p in peer \"%s:%s\"'s pen", buf,
+ GST_CAT_DEBUG (debug_dataflow, "putting buffer %p in peer \"%s:%s\"'s pen", data,
GST_DEBUG_PAD_NAME (peer));
/*
@@ -459,9 +459,9 @@ gst_basic_scheduler_chainhandler_proxy (GstPad * pad, GstBuffer * buf)
g_assert (GST_RPAD_BUFPEN (GST_RPAD_PEER (pad)) == NULL);
/* now fill the bufferpen and switch so it can be consumed */
- GST_RPAD_BUFPEN (GST_RPAD_PEER (pad)) = buf;
+ GST_RPAD_BUFPEN (GST_RPAD_PEER (pad)) = data;
GST_CAT_DEBUG (debug_dataflow, "switching to %p to consume buffer %p",
- GST_ELEMENT_THREADSTATE (GST_PAD_PARENT (pad)), buf);
+ GST_ELEMENT_THREADSTATE (GST_PAD_PARENT (pad)), data);
do_element_switch (parent);
@@ -469,18 +469,18 @@ gst_basic_scheduler_chainhandler_proxy (GstPad * pad, GstBuffer * buf)
}
static void
-gst_basic_scheduler_select_proxy (GstPad * pad, GstBuffer * buf)
+gst_basic_scheduler_select_proxy (GstPad * pad, GstData * data)
{
GstElement *parent;
parent = GST_PAD_PARENT (pad);
GST_CAT_DEBUG (debug_dataflow, "putting buffer %p in peer's pen of pad %s:%s",
- buf, GST_DEBUG_PAD_NAME (pad));
+ data, GST_DEBUG_PAD_NAME (pad));
g_assert (GST_RPAD_BUFPEN (GST_RPAD_PEER (pad)) == NULL);
/* now fill the bufferpen and switch so it can be consumed */
- GST_RPAD_BUFPEN (GST_RPAD_PEER (pad)) = buf;
+ GST_RPAD_BUFPEN (GST_RPAD_PEER (pad)) = data;
GST_CAT_DEBUG (debug_dataflow, "switching to %p",
GST_ELEMENT_THREADSTATE (parent));
/* FIXME temporarily diabled */
@@ -492,10 +492,10 @@ gst_basic_scheduler_select_proxy (GstPad * pad, GstBuffer * buf)
}
-static GstBuffer *
+static GstData *
gst_basic_scheduler_gethandler_proxy (GstPad * pad)
{
- GstBuffer *buf;
+ GstData *data;
GstElement *parent;
GstRealPad *peer;
@@ -528,12 +528,12 @@ gst_basic_scheduler_gethandler_proxy (GstPad * pad)
GST_CAT_DEBUG (debug_dataflow, "done switching");
/* now grab the buffer from the pen, clear the pen, and return the buffer */
- buf = GST_RPAD_BUFPEN (pad);
+ data = GST_RPAD_BUFPEN (pad);
GST_RPAD_BUFPEN (pad) = NULL;
GST_DEBUG ("leaving gethandler proxy of %s:%s", GST_DEBUG_PAD_NAME (pad));
- return buf;
+ return data;
}
static gboolean
@@ -559,7 +559,7 @@ gst_basic_scheduler_eventhandler_proxy (GstPad *srcpad, GstEvent *event)
}
if (flush) {
- GstData *data = GST_DATA (GST_RPAD_BUFPEN (srcpad));
+ GstData *data = GST_RPAD_BUFPEN (srcpad);
GST_INFO ("event is flush");
diff --git a/gst/schedulers/gstoptimalscheduler.c b/gst/schedulers/gstoptimalscheduler.c
index 587566e86..a6d6ff7e0 100644
--- a/gst/schedulers/gstoptimalscheduler.c
+++ b/gst/schedulers/gstoptimalscheduler.c
@@ -117,6 +117,7 @@ struct _GstOptSchedulerChain {
gint num_groups;
gint num_enabled;
};
+
/*
* elements that are scheduled in one cothread
*/
@@ -187,7 +188,9 @@ struct _GstOptSchedulerGroup {
/* some group operations */
static GstOptSchedulerGroup* ref_group (GstOptSchedulerGroup *group);
#ifndef USE_COTHREADS
+/*
static GstOptSchedulerGroup* ref_group_by_count (GstOptSchedulerGroup *group, gint count);
+*/
#endif
static GstOptSchedulerGroup* unref_group (GstOptSchedulerGroup *group);
static void destroy_group (GstOptSchedulerGroup *group);
@@ -253,67 +256,6 @@ static void gst_opt_scheduler_show (GstScheduler *sched);
static GstSchedulerClass *parent_class = NULL;
-/* debug functions */
-
-static void
-gst_opt_scheduler_group_debug (GstOptSchedulerGroup *group)
-{
- GSList *el;
- GstElement *e;
- gchar *string;
- gchar *name;
- gchar *s;
-
- el = group->elements;
-
- if (!el) return;
- e = GST_ELEMENT (el->data);
- string = g_strdup (GST_ELEMENT_NAME (e));
- el = el->next;
-
- while (el)
- {
- e = GST_ELEMENT (el->data);
- s = string;
- name = g_strdup_printf (",%s", GST_ELEMENT_NAME (e));
- string = g_strconcat (s, name, NULL);
- g_free (s);
- g_free (name);
- el = el->next;
- }
- GST_DEBUG ("scheduler group %p: %s", group, string);
- g_free (string);
-}
-
-
-static void
-gst_opt_scheduler_chain_debug (GstOptSchedulerChain *chain, const gchar *label)
-{
- GSList *group = NULL;
-
- GST_DEBUG ("starting opt scheduler chain debug: %s", label);
- GST_DEBUG ("refcount %d, num_groups %d, num_enabled %d",
- chain->refcount, chain->num_groups, chain->num_enabled);
- GST_DEBUG ("scheduler %p", chain->sched);
- group = chain->groups;
- while (group)
- {
- gst_opt_scheduler_group_debug ((GstOptSchedulerGroup *) group->data);
- group = group->next;
- }
- GST_DEBUG ("finished caps debug");
-}
-
-#ifndef USE_COTHREADS
-static void
-gst_opt_scheduler_debug (GstOptScheduler *osched, const gchar *label)
-{
- GST_INFO ("%s:debugging scheduler run queue with recursion %d and length %d",
- label, osched->recursion, g_list_length (osched->runqueue));
- g_list_foreach (osched->runqueue, (GFunc) gst_opt_scheduler_group_debug, NULL);
-}
-#endif
-
static GType
gst_opt_scheduler_get_type (void)
{
@@ -654,6 +596,7 @@ ref_group (GstOptSchedulerGroup *group)
}
#ifndef USE_COTHREADS
+/* remove me
static GstOptSchedulerGroup*
ref_group_by_count (GstOptSchedulerGroup *group, gint count)
{
@@ -664,6 +607,7 @@ ref_group_by_count (GstOptSchedulerGroup *group, gint count)
return group;
}
+*/
#endif
static GstOptSchedulerGroup*
@@ -866,7 +810,6 @@ group_element_set_enabled (GstOptSchedulerGroup *group, GstElement *element, gbo
static gboolean
schedule_group (GstOptSchedulerGroup *group)
{
- g_assert (group != NULL);
if (!group->entry) {
GST_INFO ( "not scheduling group %p without entry", group);
return FALSE;
@@ -911,8 +854,7 @@ schedule_group (GstOptSchedulerGroup *group)
static void
gst_opt_scheduler_schedule_run_queue (GstOptScheduler *osched)
{
- GST_LOG_OBJECT (osched,
- "entering scheduler run queue (recursion %d, length %d)",
+ GST_LOG_OBJECT (osched, "entering scheduler run queue recursion %d %d",
osched->recursion, g_list_length (osched->runqueue));
/* make sure we don't exceed max_recursion */
@@ -926,24 +868,12 @@ gst_opt_scheduler_schedule_run_queue (GstOptScheduler *osched)
while (osched->runqueue) {
GstOptSchedulerGroup *group;
gboolean res;
- GList *p;
group = (GstOptSchedulerGroup *) osched->runqueue->data;
- /* Get the next group that isn't disabled */
- p = osched->runqueue;
- while (GST_OPT_SCHEDULER_GROUP_IS_DISABLED (group)) {
- p = p->next;
- if (p == NULL) {
- return;
- }
- group = (GstOptSchedulerGroup *) p->data;
- }
-
- /* runqueue holds refcount to group */
- gst_opt_scheduler_debug (osched, "scheduler runqueue loop");
+ /* runqueue hols refcount to group */
osched->runqueue = g_list_remove (osched->runqueue, group);
-
+
GST_LOG_OBJECT (osched, "scheduling group %p", group);
res = schedule_group (group);
@@ -957,9 +887,7 @@ gst_opt_scheduler_schedule_run_queue (GstOptScheduler *osched)
unref_group (group);
}
-#if 0
GST_LOG_OBJECT (osched, "run queue length after scheduling %d", g_list_length (osched->runqueue));
-#endif
osched->recursion--;
}
@@ -975,8 +903,6 @@ schedule_chain (GstOptSchedulerChain *chain)
osched = chain->sched;
groups = chain->groups;
- GST_DEBUG ("scheduling chain %p with %d groups",
- chain, g_slist_length (groups));
while (groups) {
GstOptSchedulerGroup *group = (GstOptSchedulerGroup *) groups->data;
@@ -989,13 +915,12 @@ schedule_chain (GstOptSchedulerChain *chain)
schedule_group (group);
#else
osched->recursion = 0;
- if (osched->runqueue == NULL || group != osched->runqueue->data) {
- ref_group (group);
- osched->runqueue = g_list_append (osched->runqueue, group);
+ if (!g_list_find (osched->runqueue, group))
+ {
+ ref_group (group);
+ osched->runqueue = g_list_append (osched->runqueue, group);
}
- GST_LOG ("calling scheduler_run_queue on %p", osched);
gst_opt_scheduler_schedule_run_queue (osched);
- GST_LOG ("calling scheduler_run_queue on %p done", osched);
#endif
GST_LOG ("done scheduling group %p in chain %p",
@@ -1006,7 +931,6 @@ schedule_chain (GstOptSchedulerChain *chain)
groups = g_slist_next (groups);
}
- GST_DEBUG ("done scheduling chain %p", chain);
}
/* a get-based group is scheduled by getting a buffer from the get based
@@ -1025,7 +949,7 @@ get_group_schedule_function (int argc, char *argv[])
group->flags |= GST_OPT_SCHEDULER_GROUP_RUNNING;
while (pads) {
- GstBuffer *buffer;
+ GstData *data;
GstPad *pad = GST_PAD_CAST (pads->data);
pads = g_list_next (pads);
@@ -1036,13 +960,13 @@ get_group_schedule_function (int argc, char *argv[])
GST_LOG ("doing get and push on pad \"%s:%s\" in group %p",
GST_DEBUG_PAD_NAME (pad), group);
- buffer = GST_RPAD_GETFUNC (pad) (pad);
- if (buffer) {
- if (GST_EVENT_IS_INTERRUPT (buffer)) {
- gst_event_unref (GST_EVENT (buffer));
+ data = GST_RPAD_GETFUNC (pad) (pad);
+ if (data) {
+ if (GST_EVENT_IS_INTERRUPT (data)) {
+ gst_event_unref (GST_EVENT (data));
break;
}
- gst_pad_push (pad, buffer);
+ gst_pad_push (pad, data);
}
}
@@ -1095,7 +1019,7 @@ unknown_group_schedule_function (int argc, char *argv[])
* link performs a push to the loop element. We then schedule the
* group with the loop-based element until the bufpen is empty */
static void
-gst_opt_scheduler_loop_wrapper (GstPad *sinkpad, GstBuffer *buffer)
+gst_opt_scheduler_loop_wrapper (GstPad *sinkpad, GstData *data)
{
GstOptSchedulerGroup *group;
GstOptScheduler *osched;
@@ -1112,36 +1036,33 @@ gst_opt_scheduler_loop_wrapper (GstPad *sinkpad, GstBuffer *buffer)
group_error_handler (group);
}
else {
- GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)) = g_list_append (GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)), buffer);
+ GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)) = g_list_append (GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)), data);
schedule_group (group);
}
#else
- GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)) = g_list_append (GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)), buffer);
+ GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)) = g_list_append (GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad)), data);
if (!(group->flags & GST_OPT_SCHEDULER_GROUP_RUNNING)) {
- /* Only schedule the group if it's not already scheduled */
- if (osched->runqueue == NULL || osched->runqueue->data != group) {
+ GST_LOG ("adding %p to runqueue", group);
+ if (!g_list_find (osched->runqueue, group))
+ {
ref_group (group);
- GST_LOG ("adding %p to runqueue", group);
osched->runqueue = g_list_append (osched->runqueue, group);
- }
+ }
}
#endif
-
-#if 0
+
GST_LOG ("after loop wrapper buflist %d",
g_list_length (GST_PAD_BUFLIST (GST_RPAD_PEER (sinkpad))));
-#endif
}
/* this function is called by a loop based element that performs a
* pull on a sinkpad. We schedule the peer group until the bufpen
* is filled with the buffer so that this function can return */
-static GstBuffer*
+static GstData*
gst_opt_scheduler_get_wrapper (GstPad *srcpad)
{
- GstBuffer *buffer;
- GstPad *sinkpad;
- GstOptSchedulerGroup *group, *peergroup;
+ GstData *data;
+ GstOptSchedulerGroup *group;
GstOptScheduler *osched;
gboolean disabled;
@@ -1149,24 +1070,19 @@ gst_opt_scheduler_get_wrapper (GstPad *srcpad)
/* first try to grab a queued buffer */
if (GST_PAD_BUFLIST (srcpad)) {
- buffer = GST_PAD_BUFLIST (srcpad)->data;
- GST_PAD_BUFLIST (srcpad) = g_list_remove (GST_PAD_BUFLIST (srcpad), buffer);
+ data = GST_PAD_BUFLIST (srcpad)->data;
+ GST_PAD_BUFLIST (srcpad) = g_list_remove (GST_PAD_BUFLIST (srcpad), data);
- GST_LOG ("get wrapper, returning queued buffer");
+ GST_LOG ("get wrapper, returning queued data %d",
+ g_list_length (GST_PAD_BUFLIST (srcpad)));
- return buffer;
+ return data;
}
- sinkpad = gst_pad_get_peer (srcpad);
- peergroup = GST_ELEMENT_SCHED_GROUP (GST_PAD_PARENT (sinkpad));
- /* Disable the loop group */
- peergroup->flags &= ~GST_OPT_SCHEDULER_GROUP_RUNNING;
- peergroup->flags |= GST_OPT_SCHEDULER_GROUP_DISABLED;
-
/* else we need to schedule the peer element */
group = GST_ELEMENT_SCHED_GROUP (GST_PAD_PARENT (srcpad));
osched = group->chain->sched;
- buffer = NULL;
+ data = NULL;
disabled = FALSE;
do {
@@ -1174,10 +1090,14 @@ gst_opt_scheduler_get_wrapper (GstPad *srcpad)
schedule_group (group);
#else
if (!(group->flags & GST_OPT_SCHEDULER_GROUP_RUNNING)) {
- ref_group_by_count (group, 2);
+ ref_group (group);
+
+ if (!g_list_find (osched->runqueue, group))
+ {
+ ref_group (group);
+ osched->runqueue = g_list_append (osched->runqueue, group);
+ }
- gst_opt_scheduler_debug (osched, "scheduler debug");
- osched->runqueue = g_list_append (osched->runqueue, group);
GST_LOG_OBJECT (osched, "recursing into scheduler group %p", group);
gst_opt_scheduler_schedule_run_queue (osched);
GST_LOG_OBJECT (osched, "return from recurse group %p", group);
@@ -1192,52 +1112,48 @@ gst_opt_scheduler_get_wrapper (GstPad *srcpad)
}
}
else {
- /* in this case, the group was running and we wanted to swich to it,
+ /* in this case, the group was running and we wanted to swtich to it,
* this is not allowed in the optimal scheduler (yet) */
g_warning ("deadlock detected, disabling group %p", group);
group_error_handler (group);
- return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
+ return GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
}
#endif
-
- /* Reenable our loop group */
- peergroup->flags &= ~GST_OPT_SCHEDULER_GROUP_DISABLED;
- peergroup->flags |= GST_OPT_SCHEDULER_GROUP_RUNNING;
-
/* if the scheduler interrupted, make sure we send an INTERRUPTED event to the
* loop based element */
if (osched->state == GST_OPT_SCHEDULER_STATE_INTERRUPTED) {
GST_INFO ( "scheduler interrupted, return interrupt event");
- buffer = GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
+ data = GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
}
else {
if (GST_PAD_BUFLIST (srcpad)) {
- buffer = (GstBuffer *) GST_PAD_BUFLIST (srcpad)->data;
- GST_PAD_BUFLIST (srcpad) = g_list_remove (GST_PAD_BUFLIST (srcpad), buffer);
+ data = GST_PAD_BUFLIST (srcpad)->data;
+ GST_PAD_BUFLIST (srcpad) = g_list_remove (GST_PAD_BUFLIST (srcpad), data);
}
else if (disabled) {
/* no buffer in queue and peer group was disabled */
- buffer = GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
+ data = GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
}
}
}
- while (buffer == NULL);
+ while (data == NULL);
- GST_LOG ("get wrapper, returning buffer %p", buffer);
+ GST_LOG ("get wrapper, returning data %p, queue length %d",
+ data, g_list_length (GST_PAD_BUFLIST (srcpad)));
- return buffer;
+ return data;
}
/* this function is a chain wrapper for non-event-aware plugins,
* it'll simply dispatch the events to the (default) event handler */
static void
-gst_opt_scheduler_chain_wrapper (GstPad *sinkpad, GstBuffer *buffer)
+gst_opt_scheduler_chain_wrapper (GstPad *sinkpad, GstData *data)
{
- if (GST_IS_EVENT (buffer)) {
- gst_pad_send_event (sinkpad, GST_EVENT (buffer));
+ if (GST_IS_EVENT (data)) {
+ gst_pad_send_event (sinkpad, GST_EVENT (data));
}
else {
- GST_RPAD_CHAINFUNC (sinkpad) (sinkpad, buffer);
+ GST_RPAD_CHAINFUNC (sinkpad) (sinkpad, data);
}
}
@@ -2148,18 +2064,13 @@ gst_opt_scheduler_iterate (GstScheduler *sched)
/* we have to schedule each of the scheduler chains now */
chains = osched->chains;
- GST_INFO ("going through all chains (%d)",
- g_slist_length (chains));
while (chains) {
GstOptSchedulerChain *chain = (GstOptSchedulerChain *) chains->data;
- gst_opt_scheduler_chain_debug (chain, "chain loop");
ref_chain (chain);
/* if the chain is not disabled, schedule it */
if (!GST_OPT_SCHEDULER_CHAIN_IS_DISABLED (chain)) {
- GST_INFO ("chain %p enabled, scheduling", chain);
schedule_chain (chain);
- GST_INFO ("chain %p enabled, scheduling done", chain);
scheduled = TRUE;
}
@@ -2178,7 +2089,6 @@ gst_opt_scheduler_iterate (GstScheduler *sched)
chains = g_slist_next (chains);
unref_chain (chain);
}
- GST_INFO ("done going through all chains");
/* at this point it's possible that the scheduler state is
* in error, we then return an error */
diff --git a/plugins/elements/gstaggregator.c b/plugins/elements/gstaggregator.c
index 0ac2bd90a..3c3ba5d8a 100644
--- a/plugins/elements/gstaggregator.c
+++ b/plugins/elements/gstaggregator.c
@@ -92,7 +92,7 @@ static void gst_aggregator_set_property (GObject *object, guint prop_id,
static void gst_aggregator_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_aggregator_chain (GstPad *pad, GstBuffer *buf);
+static void gst_aggregator_chain (GstPad *pad, GstData *_data);
static void gst_aggregator_loop (GstElement *element);
static GstElementClass *parent_class = NULL;
@@ -286,7 +286,7 @@ gst_aggregator_push (GstAggregator *aggregator, GstPad *pad, GstBuffer *buf, guc
g_object_notify (G_OBJECT (aggregator), "last_message");
}
- gst_pad_push (aggregator->srcpad, buf);
+ gst_pad_push (aggregator->srcpad, GST_DATA (buf));
}
static void
@@ -313,7 +313,7 @@ gst_aggregator_loop (GstElement *element)
* and that the peer pad is also enabled.
*/
if (GST_PAD_IS_USABLE (pad)) {
- buf = gst_pad_pull (pad);
+ buf = GST_BUFFER (gst_pad_pull (pad));
debug = "loop";
/* then push it forward */
@@ -328,7 +328,7 @@ gst_aggregator_loop (GstElement *element)
debug = "loop_select";
pad = gst_pad_select (aggregator->sinkpads);
- buf = gst_pad_pull (pad);
+ buf = GST_BUFFER (gst_pad_pull (pad));
gst_aggregator_push (aggregator, pad, buf, debug);
}
@@ -346,8 +346,9 @@ gst_aggregator_loop (GstElement *element)
* Chain a buffer on a pad.
*/
static void
-gst_aggregator_chain (GstPad *pad, GstBuffer *buf)
+gst_aggregator_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstAggregator *aggregator;
g_return_if_fail (pad != NULL);
diff --git a/plugins/elements/gstfakesink.c b/plugins/elements/gstfakesink.c
index 0050939ae..d9a94a582 100644
--- a/plugins/elements/gstfakesink.c
+++ b/plugins/elements/gstfakesink.c
@@ -102,7 +102,7 @@ static void gst_fakesink_get_property (GObject *object, guint prop_id,
static GstElementStateReturn
gst_fakesink_change_state (GstElement *element);
-static void gst_fakesink_chain (GstPad *pad, GstBuffer *buf);
+static void gst_fakesink_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
static guint gst_fakesink_signals[LAST_SIGNAL] = { 0 };
@@ -298,8 +298,9 @@ gst_fakesink_get_property (GObject *object, guint prop_id, GValue *value, GParam
}
static void
-gst_fakesink_chain (GstPad *pad, GstBuffer *buf)
+gst_fakesink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstFakeSink *fakesink;
g_return_if_fail (pad != NULL);
diff --git a/plugins/elements/gstfakesrc.c b/plugins/elements/gstfakesrc.c
index 9d088beac..e992ee50f 100644
--- a/plugins/elements/gstfakesrc.c
+++ b/plugins/elements/gstfakesrc.c
@@ -170,7 +170,7 @@ static void gst_fakesrc_get_property (GObject *object, guint prop_id,
static GstElementStateReturn gst_fakesrc_change_state (GstElement *element);
-static GstBuffer* gst_fakesrc_get (GstPad *pad);
+static GstData* gst_fakesrc_get (GstPad *pad);
static void gst_fakesrc_loop (GstElement *element);
static GstElementClass *parent_class = NULL;
@@ -734,7 +734,7 @@ gst_fakesrc_create_buffer (GstFakeSrc *src)
return buf;
}
-static GstBuffer *
+static GstData *
gst_fakesrc_get(GstPad *pad)
{
GstFakeSrc *src;
@@ -748,22 +748,22 @@ gst_fakesrc_get(GstPad *pad)
if (src->need_flush) {
src->need_flush = FALSE;
- return GST_BUFFER(gst_event_new (GST_EVENT_FLUSH));
+ return GST_DATA(gst_event_new (GST_EVENT_FLUSH));
}
if (src->buffer_count == src->segment_end) {
if (src->segment_loop) {
- return GST_BUFFER(gst_event_new (GST_EVENT_SEGMENT_DONE));
+ return GST_DATA(gst_event_new (GST_EVENT_SEGMENT_DONE));
}
else {
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA(gst_event_new (GST_EVENT_EOS));
}
}
if (src->rt_num_buffers == 0) {
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA(gst_event_new (GST_EVENT_EOS));
}
else {
if (src->rt_num_buffers > 0)
@@ -772,7 +772,7 @@ gst_fakesrc_get(GstPad *pad)
if (src->eos) {
GST_INFO ( "fakesrc is setting eos on pad");
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA(gst_event_new (GST_EVENT_EOS));
}
buf = gst_fakesrc_create_buffer (src);
@@ -795,7 +795,7 @@ gst_fakesrc_get(GstPad *pad)
GST_LOG_OBJECT (src, "post handoff emit");
}
- return buf;
+ return GST_DATA (buf);
}
/**
@@ -819,10 +819,10 @@ gst_fakesrc_loop(GstElement *element)
while (pads) {
GstPad *pad = GST_PAD (pads->data);
- GstBuffer *buf;
+ GstData *data;
- buf = gst_fakesrc_get (pad);
- gst_pad_push (pad, buf);
+ data = gst_fakesrc_get (pad);
+ gst_pad_push (pad, data);
if (src->eos) {
return;
diff --git a/plugins/elements/gstfdsink.c b/plugins/elements/gstfdsink.c
index b25f377d8..b3f215912 100644
--- a/plugins/elements/gstfdsink.c
+++ b/plugins/elements/gstfdsink.c
@@ -61,7 +61,7 @@ static void gst_fdsink_set_property (GObject *object, guint prop_id,
static void gst_fdsink_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_fdsink_chain (GstPad *pad,GstBuffer *buf);
+static void gst_fdsink_chain (GstPad *pad,GstData *_data);
static GstElementClass *parent_class = NULL;
/*static guint gst_fdsink_signals[LAST_SIGNAL] = { 0 };*/
@@ -115,8 +115,9 @@ gst_fdsink_init (GstFdSink *fdsink)
}
static void
-gst_fdsink_chain (GstPad *pad, GstBuffer *buf)
+gst_fdsink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstFdSink *fdsink;
g_return_if_fail (pad != NULL);
diff --git a/plugins/elements/gstfdsrc.c b/plugins/elements/gstfdsrc.c
index 5b2bc91c2..997039987 100644
--- a/plugins/elements/gstfdsrc.c
+++ b/plugins/elements/gstfdsrc.c
@@ -71,7 +71,7 @@ static void gst_fdsrc_set_property (GObject *object, guint prop_id,
static void gst_fdsrc_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_fdsrc_get (GstPad *pad);
+static GstData * gst_fdsrc_get (GstPad *pad);
static GstElementClass *parent_class = NULL;
@@ -177,7 +177,7 @@ gst_fdsrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpe
}
}
-static GstBuffer *
+static GstData *
gst_fdsrc_get(GstPad *pad)
{
GstFdSrc *src;
@@ -195,14 +195,14 @@ gst_fdsrc_get(GstPad *pad)
/* if nothing was read, we're in eos */
if (readbytes == 0) {
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
if (readbytes == -1) {
- g_error ("Error reading from file descriptor. Ending stream.\n");
- gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
- }
+ g_error ("Error reading from file descriptor. Ending stream.\n");
+ gst_element_set_eos (GST_ELEMENT (src));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
+ }
GST_BUFFER_OFFSET (buf) = src->curoffset;
GST_BUFFER_SIZE (buf) = readbytes;
@@ -210,5 +210,5 @@ gst_fdsrc_get(GstPad *pad)
src->curoffset += readbytes;
/* we're done, return the buffer */
- return buf;
+ return GST_DATA (buf);
}
diff --git a/plugins/elements/gstfilesink.c b/plugins/elements/gstfilesink.c
index ac8fb14cc..a3ced9954 100644
--- a/plugins/elements/gstfilesink.c
+++ b/plugins/elements/gstfilesink.c
@@ -83,7 +83,7 @@ static void gst_filesink_close_file (GstFileSink *sink);
static gboolean gst_filesink_handle_event (GstPad *pad, GstEvent *event);
static gboolean gst_filesink_pad_query (GstPad *pad, GstQueryType type,
GstFormat *format, gint64 *value);
-static void gst_filesink_chain (GstPad *pad,GstBuffer *buf);
+static void gst_filesink_chain (GstPad *pad,GstData *_data);
static GstElementStateReturn gst_filesink_change_state (GstElement *element);
@@ -361,8 +361,9 @@ gst_filesink_handle_event (GstPad *pad, GstEvent *event)
* take the buffer from the pad and write to file if it's open
*/
static void
-gst_filesink_chain (GstPad *pad, GstBuffer *buf)
+gst_filesink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstFileSink *filesink;
g_return_if_fail (pad != NULL);
diff --git a/plugins/elements/gstfilesrc.c b/plugins/elements/gstfilesrc.c
index 8ceba5883..f0de20d0a 100644
--- a/plugins/elements/gstfilesrc.c
+++ b/plugins/elements/gstfilesrc.c
@@ -142,7 +142,7 @@ static void gst_filesrc_set_property (GObject *object, guint prop_id,
static void gst_filesrc_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_filesrc_get (GstPad *pad);
+static GstData * gst_filesrc_get (GstPad *pad);
static gboolean gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event);
static gboolean gst_filesrc_srcpad_query (GstPad *pad, GstQueryType type,
GstFormat *format, gint64 *value);
@@ -650,7 +650,7 @@ gst_filesrc_get_read (GstFileSrc *src)
return buf;
}
-static GstBuffer *
+static GstData *
gst_filesrc_get (GstPad *pad)
{
GstFileSrc *src;
@@ -667,13 +667,13 @@ gst_filesrc_get (GstPad *pad)
GST_DEBUG ("filesrc sending discont");
event = gst_event_new_discontinuous (FALSE, GST_FORMAT_BYTES, src->curoffset, NULL);
src->need_flush = FALSE;
- return GST_BUFFER (event);
+ return GST_DATA (event);
}
/* check for flush */
if (src->need_flush) {
src->need_flush = FALSE;
GST_DEBUG ("filesrc sending flush");
- return GST_BUFFER (gst_event_new_flush ());
+ return GST_DATA (gst_event_new_flush ());
}
/* check for EOF */
@@ -681,13 +681,13 @@ gst_filesrc_get (GstPad *pad)
GST_DEBUG ("filesrc eos %" G_GINT64_FORMAT" %" G_GINT64_FORMAT,
src->curoffset, src->filelen);
gst_element_set_eos (GST_ELEMENT (src));
- return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
if (src->using_mmap){
- return gst_filesrc_get_mmap (src);
+ return GST_DATA (gst_filesrc_get_mmap (src));
}else{
- return gst_filesrc_get_read (src);
+ return GST_DATA (gst_filesrc_get_read (src));
}
}
diff --git a/plugins/elements/gstidentity.c b/plugins/elements/gstidentity.c
index df42d70bd..b6b77d6f2 100644
--- a/plugins/elements/gstidentity.c
+++ b/plugins/elements/gstidentity.c
@@ -70,7 +70,7 @@ static void gst_identity_init (GstIdentity *identity);
static void gst_identity_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_identity_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_identity_chain (GstPad *pad, GstBuffer *buf);
+static void gst_identity_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
static guint gst_identity_signals[LAST_SIGNAL] = { 0 };
@@ -224,8 +224,9 @@ gst_identity_init (GstIdentity *identity)
}
static void
-gst_identity_chain (GstPad *pad, GstBuffer *buf)
+gst_identity_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstIdentity *identity;
guint i;
@@ -286,7 +287,7 @@ gst_identity_chain (GstPad *pad, GstBuffer *buf)
if (i>1)
gst_buffer_ref (buf);
- gst_pad_push (identity->srcpad, buf);
+ gst_pad_push (identity->srcpad, GST_DATA (buf));
if (identity->sleep_time)
g_usleep (identity->sleep_time);
@@ -304,7 +305,7 @@ gst_identity_loop (GstElement *element)
identity = GST_IDENTITY (element);
- buf = gst_pad_pull (identity->sinkpad);
+ buf = GST_BUFFER (gst_pad_pull (identity->sinkpad));
if (GST_IS_EVENT (buf)) {
GstEvent *event = GST_EVENT (buf);
@@ -316,7 +317,7 @@ gst_identity_loop (GstElement *element)
}
}
else {
- gst_identity_chain (identity->sinkpad, buf);
+ gst_identity_chain (identity->sinkpad, GST_DATA (buf));
}
}
diff --git a/plugins/elements/gstmd5sink.c b/plugins/elements/gstmd5sink.c
index e5781506b..114d78daf 100644
--- a/plugins/elements/gstmd5sink.c
+++ b/plugins/elements/gstmd5sink.c
@@ -63,7 +63,7 @@ static void gst_md5sink_init (GstMD5Sink *md5sink);
static void gst_md5sink_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_md5sink_chain (GstPad *pad, GstBuffer *buf);
+static void gst_md5sink_chain (GstPad *pad, GstData *_data);
static GstElementStateReturn gst_md5sink_change_state (GstElement *element);
/* variables */
@@ -489,8 +489,9 @@ gst_md5sink_get_property (GObject *object, guint prop_id, GValue *value, GParamS
}
static void
-gst_md5sink_chain (GstPad *pad, GstBuffer *buf)
+gst_md5sink_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstMD5Sink *md5sink;
g_return_if_fail (pad != NULL);
diff --git a/plugins/elements/gstmultidisksrc.c b/plugins/elements/gstmultidisksrc.c
index 5a27bdf3a..c2a0e6fdb 100644
--- a/plugins/elements/gstmultidisksrc.c
+++ b/plugins/elements/gstmultidisksrc.c
@@ -63,7 +63,7 @@ static void gst_multidisksrc_init (GstMultiDiskSrc *disksrc);
static void gst_multidisksrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_multidisksrc_get (GstPad *pad);
+static GstData * gst_multidisksrc_get (GstPad *pad);
/*static GstBuffer * gst_multidisksrc_get_region (GstPad *pad,GstRegionType type,guint64 offset,guint64 len);*/
static GstElementStateReturn gst_multidisksrc_change_state (GstElement *element);
@@ -195,7 +195,7 @@ gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GP
*
* Push a new buffer from the disksrc at the current offset.
*/
-static GstBuffer *
+static GstData *
gst_multidisksrc_get (GstPad *pad)
{
GstMultiDiskSrc *src;
@@ -209,7 +209,7 @@ gst_multidisksrc_get (GstPad *pad)
gst_multidisksrc_close_file(src);
if (!src->listptr) {
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
list = src->listptr;
@@ -240,7 +240,7 @@ gst_multidisksrc_get (GstPad *pad)
}
/* we're done, return the buffer */
- return buf;
+ return GST_DATA (buf);
}
/* open the file and mmap it, necessary to go to READY state */
diff --git a/plugins/elements/gstmultifilesrc.c b/plugins/elements/gstmultifilesrc.c
index 5a27bdf3a..c2a0e6fdb 100644
--- a/plugins/elements/gstmultifilesrc.c
+++ b/plugins/elements/gstmultifilesrc.c
@@ -63,7 +63,7 @@ static void gst_multidisksrc_init (GstMultiDiskSrc *disksrc);
static void gst_multidisksrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstBuffer * gst_multidisksrc_get (GstPad *pad);
+static GstData * gst_multidisksrc_get (GstPad *pad);
/*static GstBuffer * gst_multidisksrc_get_region (GstPad *pad,GstRegionType type,guint64 offset,guint64 len);*/
static GstElementStateReturn gst_multidisksrc_change_state (GstElement *element);
@@ -195,7 +195,7 @@ gst_multidisksrc_get_property (GObject *object, guint prop_id, GValue *value, GP
*
* Push a new buffer from the disksrc at the current offset.
*/
-static GstBuffer *
+static GstData *
gst_multidisksrc_get (GstPad *pad)
{
GstMultiDiskSrc *src;
@@ -209,7 +209,7 @@ gst_multidisksrc_get (GstPad *pad)
gst_multidisksrc_close_file(src);
if (!src->listptr) {
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
list = src->listptr;
@@ -240,7 +240,7 @@ gst_multidisksrc_get (GstPad *pad)
}
/* we're done, return the buffer */
- return buf;
+ return GST_DATA (buf);
}
/* open the file and mmap it, necessary to go to READY state */
diff --git a/plugins/elements/gstpipefilter.c b/plugins/elements/gstpipefilter.c
index 65a2a7fc2..e31e0e255 100644
--- a/plugins/elements/gstpipefilter.c
+++ b/plugins/elements/gstpipefilter.c
@@ -68,8 +68,8 @@ static void gst_pipefilter_init (GstPipefilter *pipefilter);
static void gst_pipefilter_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_pipefilter_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static GstBuffer* gst_pipefilter_get (GstPad *pad);
-static void gst_pipefilter_chain (GstPad *pad, GstBuffer *buf);
+static GstData* gst_pipefilter_get (GstPad *pad);
+static void gst_pipefilter_chain (GstPad *pad, GstData *_data);
static gboolean gst_pipefilter_handle_event (GstPad *pad, GstEvent *event);
static GstElementStateReturn gst_pipefilter_change_state (GstElement *element);
@@ -155,7 +155,7 @@ gst_pipefilter_handle_event (GstPad *pad, GstEvent *event)
return TRUE;
}
-static GstBuffer*
+static GstData*
gst_pipefilter_get (GstPad *pad)
{
GstPipefilter *pipefilter;
@@ -184,7 +184,7 @@ gst_pipefilter_get (GstPad *pad)
}
/* if we didn't get as many bytes as we asked for, we're at EOF */
if (readbytes == 0) {
- return GST_BUFFER(gst_event_new (GST_EVENT_EOS));
+ return GST_DATA (gst_event_new (GST_EVENT_EOS));
}
@@ -192,12 +192,13 @@ gst_pipefilter_get (GstPad *pad)
GST_BUFFER_SIZE(newbuf) = readbytes;
pipefilter->curoffset += readbytes;
- return newbuf;
+ return GST_DATA (newbuf);
}
static void
-gst_pipefilter_chain (GstPad *pad,GstBuffer *buf)
+gst_pipefilter_chain (GstPad *pad,GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstPipefilter *pipefilter;
glong writebytes;
guchar *data;
diff --git a/plugins/elements/gstqueue.c b/plugins/elements/gstqueue.c
index b20163968..c1924242e 100644
--- a/plugins/elements/gstqueue.c
+++ b/plugins/elements/gstqueue.c
@@ -72,8 +72,8 @@ static void gst_queue_set_property (GObject *object, guint prop_id,
static void gst_queue_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_queue_chain (GstPad *pad, GstBuffer *buf);
-static GstBuffer * gst_queue_get (GstPad *pad);
+static void gst_queue_chain (GstPad *pad, GstData *data);
+static GstData * gst_queue_get (GstPad *pad);
static GstBufferPool* gst_queue_get_bufferpool (GstPad *pad);
static gboolean gst_queue_handle_src_event (GstPad *pad, GstEvent *event);
@@ -300,13 +300,13 @@ gst_queue_locked_flush (GstQueue *queue)
}
static void
-gst_queue_chain (GstPad *pad, GstBuffer *buf)
+gst_queue_chain (GstPad *pad, GstData *data)
{
GstQueue *queue;
g_return_if_fail (pad != NULL);
g_return_if_fail (GST_IS_PAD (pad));
- g_return_if_fail (buf != NULL);
+ g_return_if_fail (data != NULL);
queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
@@ -319,33 +319,35 @@ gst_queue_chain (GstPad *pad, GstBuffer *buf)
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "event sent\n");
}
g_async_queue_unlock(queue->events);
-
+
restart:
/* we have to lock the queue since we span threads */
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "locking t:%p", g_thread_self ());
g_mutex_lock (queue->qlock);
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "locked t:%p", g_thread_self ());
-
+
/* assume don't need to flush this buffer when the queue is filled */
queue->flush = FALSE;
-
- if (GST_IS_EVENT (buf)) {
- switch (GST_EVENT_TYPE (buf)) {
+
+ if (GST_IS_EVENT (data)) {
+ switch (GST_EVENT_TYPE (data)) {
case GST_EVENT_FLUSH:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
gst_queue_locked_flush (queue);
break;
case GST_EVENT_EOS:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "eos in on %s %d\n",
- GST_ELEMENT_NAME (queue), queue->level_buffers);
+ GST_ELEMENT_NAME (queue), queue->level_buffers);
break;
default:
/* we put the event in the queue, we don't have to act ourselves */
break;
}
}
-
- GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "adding buffer %p of size %d",buf,GST_BUFFER_SIZE(buf));
+
+ if (GST_IS_BUFFER (data))
+ GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue,
+ "adding buffer %p of size %d", data, GST_BUFFER_SIZE (data));
if (queue->level_buffers == queue->size_buffers) {
g_mutex_unlock (queue->qlock);
@@ -358,10 +360,10 @@ restart:
/* if we leak on the upstream side, drop the current buffer */
if (queue->leaky == GST_QUEUE_LEAK_UPSTREAM) {
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
- if (GST_IS_EVENT (buf))
+ if (GST_IS_EVENT (data))
fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
GST_ELEMENT_NAME(GST_ELEMENT(queue)),
- GST_EVENT_TYPE(GST_EVENT(buf)));
+ GST_EVENT_TYPE(GST_EVENT(data)));
/* now we have to clean up and exit right away */
g_mutex_unlock (queue->qlock);
goto out_unref;
@@ -369,21 +371,23 @@ restart:
/* otherwise we have to push a buffer off the other end */
else {
gpointer front;
- GstBuffer *leakbuf;
+ GstData *leak;
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on downstream end");
front = g_queue_pop_head (queue->queue);
- leakbuf = (GstBuffer *)(front);
+ leak = GST_DATA (front);
- if (GST_IS_EVENT (leakbuf)) {
+ queue->level_buffers--;
+ if (GST_IS_EVENT (leak)) {
fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
GST_ELEMENT_NAME(GST_ELEMENT(queue)),
- GST_EVENT_TYPE(GST_EVENT(leakbuf)));
- }
- queue->level_buffers--;
- queue->level_bytes -= GST_BUFFER_SIZE(leakbuf);
- gst_data_unref (GST_DATA (leakbuf));
+ GST_EVENT_TYPE(GST_EVENT(leak)));
+ } else {
+ queue->level_bytes -= GST_BUFFER_SIZE(leak);
+ }
+
+ gst_data_unref (leak);
}
}
@@ -412,7 +416,7 @@ restart:
/* try to signal to resolve the error */
if (!queue->may_deadlock) {
g_mutex_unlock (queue->qlock);
- gst_data_unref (GST_DATA (buf));
+ gst_data_unref (data);
gst_element_error (GST_ELEMENT (queue), "deadlock found, source pad elements are shut down");
/* we don't want to goto out_unref here, since we want to clean up before calling gst_element_error */
return;
@@ -428,14 +432,15 @@ restart:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "got not_full signal");
}
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "post full wait, level:%d/%d buffers, %d bytes",
- queue->level_buffers, queue->size_buffers, queue->level_bytes);
+ queue->level_buffers, queue->size_buffers, queue->level_bytes);
}
/* put the buffer on the tail of the list */
- g_queue_push_tail (queue->queue, buf);
+ g_queue_push_tail (queue->queue, data);
queue->level_buffers++;
- queue->level_bytes += GST_BUFFER_SIZE(buf);
+ if (GST_IS_BUFFER (data))
+ queue->level_bytes += GST_BUFFER_SIZE (data);
/* this assertion _has_ to hold */
g_assert (queue->queue->length == queue->level_buffers);
@@ -451,15 +456,15 @@ restart:
return;
out_unref:
- gst_data_unref (GST_DATA (buf));
+ gst_data_unref (data);
return;
}
-static GstBuffer *
+static GstData *
gst_queue_get (GstPad *pad)
{
GstQueue *queue;
- GstBuffer *buf = NULL;
+ GstData *data = NULL;
gpointer front;
g_assert(pad != NULL);
@@ -486,7 +491,7 @@ restart:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "interrupted!!");
g_mutex_unlock (queue->qlock);
if (gst_scheduler_interrupt (gst_pad_get_scheduler (queue->srcpad), GST_ELEMENT (queue)))
- return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
+ return GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
goto restart;
}
if (GST_STATE (queue) != GST_STATE_PLAYING) {
@@ -512,7 +517,7 @@ restart:
if (!g_cond_timed_wait (queue->not_empty, queue->qlock, &timeout)){
g_mutex_unlock (queue->qlock);
g_warning ("filler");
- return GST_BUFFER(gst_event_new_filler());
+ return GST_DATA (gst_event_new_filler());
}
}
else {
@@ -524,11 +529,12 @@ restart:
queue->level_buffers, queue->size_buffers, queue->level_bytes);
front = g_queue_pop_head (queue->queue);
- buf = (GstBuffer *)(front);
- GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "retrieved buffer %p from queue", buf);
+ data = GST_DATA (front);
+ GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "retrieved data %p from queue", data);
queue->level_buffers--;
- queue->level_bytes -= GST_BUFFER_SIZE(buf);
+ if (GST_IS_BUFFER (data))
+ queue->level_bytes -= GST_BUFFER_SIZE (data);
GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, queue, "(%s:%s)- level:%d/%d buffers, %d bytes",
GST_DEBUG_PAD_NAME(pad),
@@ -543,8 +549,8 @@ restart:
g_mutex_unlock (queue->qlock);
/* FIXME where should this be? locked? */
- if (GST_IS_EVENT(buf)) {
- GstEvent *event = GST_EVENT(buf);
+ if (GST_IS_EVENT (data)) {
+ GstEvent *event = GST_EVENT (data);
switch (GST_EVENT_TYPE(event)) {
case GST_EVENT_EOS:
GST_CAT_DEBUG_OBJECT (GST_CAT_DATAFLOW, queue, "queue \"%s\" eos", GST_ELEMENT_NAME (queue));
@@ -555,7 +561,7 @@ restart:
}
}
- return buf;
+ return data;
}
diff --git a/plugins/elements/gstshaper.c b/plugins/elements/gstshaper.c
index 7d163e25c..57fcf561b 100644
--- a/plugins/elements/gstshaper.c
+++ b/plugins/elements/gstshaper.c
@@ -286,14 +286,14 @@ gst_shaper_loop (GstElement *element)
if (connection->buffer == NULL && GST_PAD_IS_USABLE (connection->sinkpad)) {
GstBuffer *buffer;
- buffer = gst_pad_pull (connection->sinkpad);
+ buffer = GST_BUFFER (gst_pad_pull (connection->sinkpad));
/* events are simply pushed ASAP */
if (GST_IS_EVENT (buffer)) {
/* save event type as it will be unreffed after the next push */
GstEventType type = GST_EVENT_TYPE (buffer);
- gst_pad_push (connection->srcpad, buffer);
+ gst_pad_push (connection->srcpad, GST_DATA (buffer));
switch (type) {
/* on EOS we disable the pad so that we don't pull on
@@ -322,7 +322,7 @@ gst_shaper_loop (GstElement *element)
}
/* if we have a connection with a buffer, push it */
if (min != NULL && min->buffer) {
- gst_pad_push (min->srcpad, min->buffer);
+ gst_pad_push (min->srcpad, GST_DATA (min->buffer));
min->buffer = NULL;
/* since we pushed a buffer, it's not EOS */
eos = FALSE;
diff --git a/plugins/elements/gststatistics.c b/plugins/elements/gststatistics.c
index a18e64b2c..3cbcebc35 100644
--- a/plugins/elements/gststatistics.c
+++ b/plugins/elements/gststatistics.c
@@ -67,7 +67,7 @@ static void gst_statistics_init (GstStatistics *statistics);
static void gst_statistics_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
static void gst_statistics_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
-static void gst_statistics_chain (GstPad *pad, GstBuffer *buf);
+static void gst_statistics_chain (GstPad *pad, GstData *_data);
static void gst_statistics_reset (GstStatistics *statistics);
static void gst_statistics_print (GstStatistics *statistics);
@@ -256,8 +256,9 @@ gst_statistics_print (GstStatistics *statistics)
}
static void
-gst_statistics_chain (GstPad *pad, GstBuffer *buf)
+gst_statistics_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstStatistics *statistics;
gboolean update = FALSE;
@@ -313,7 +314,7 @@ gst_statistics_chain (GstPad *pad, GstBuffer *buf)
gst_statistics_print(statistics);
}
}
- gst_pad_push (statistics->srcpad, buf);
+ gst_pad_push (statistics->srcpad, GST_DATA (buf));
}
static void
diff --git a/plugins/elements/gsttee.c b/plugins/elements/gsttee.c
index f29a258ca..bfc4f8fa2 100644
--- a/plugins/elements/gsttee.c
+++ b/plugins/elements/gsttee.c
@@ -71,7 +71,7 @@ static void gst_tee_set_property (GObject *object, guint prop_id,
static void gst_tee_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec);
-static void gst_tee_chain (GstPad *pad, GstBuffer *buf);
+static void gst_tee_chain (GstPad *pad, GstData *_data);
static GstElementClass *parent_class = NULL;
@@ -342,8 +342,9 @@ gst_tee_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec
* Chain a buffer on a pad.
*/
static void
-gst_tee_chain (GstPad *pad, GstBuffer *buf)
+gst_tee_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstTee *tee;
const GList *pads;
@@ -373,7 +374,7 @@ gst_tee_chain (GstPad *pad, GstBuffer *buf)
}
if (GST_PAD_IS_USABLE (outpad))
- gst_pad_push (outpad, buf);
+ gst_pad_push (outpad, GST_DATA (buf));
else
gst_buffer_unref (buf);
}
diff --git a/tests/old/examples/plugins/example.c b/tests/old/examples/plugins/example.c
index b707a6000..0bed8f605 100644
--- a/tests/old/examples/plugins/example.c
+++ b/tests/old/examples/plugins/example.c
@@ -92,7 +92,7 @@ GST_PAD_TEMPLATE_FACTORY (src_factory,
static void gst_example_class_init (GstExampleClass *klass);
static void gst_example_init (GstExample *example);
-static void gst_example_chain (GstPad *pad, GstBuffer *buf);
+static void gst_example_chain (GstPad *pad, GstData *_data);
static void gst_example_set_property (GObject *object, guint prop_id,
const GValue *value, GParamSpec *pspec);
@@ -227,8 +227,9 @@ gst_example_init(GstExample *example)
* as the buffer provided by the peer element.
*/
static void
-gst_example_chain (GstPad *pad, GstBuffer *buf)
+gst_example_chain (GstPad *pad, GstData *_data)
{
+ GstBuffer *buf = GST_BUFFER (_data);
GstExample *example;
GstBuffer *outbuf;
@@ -272,7 +273,7 @@ gst_example_chain (GstPad *pad, GstBuffer *buf)
* in the pipeline, through the element's source pad, which is stored
* in the element's structure.
*/
- gst_pad_push(example->srcpad,outbuf);
+ gst_pad_push(example->srcpad,GST_DATA (outbuf));
/* For fun we'll emit our useless signal here */
g_signal_emit(G_OBJECT (example), gst_example_signals[ASDF], 0,
@@ -280,7 +281,7 @@ gst_example_chain (GstPad *pad, GstBuffer *buf)
/* If we're not doing something, just send the original incoming buffer. */
} else {
- gst_pad_push(example->srcpad,buf);
+ gst_pad_push(example->srcpad,GST_DATA (buf));
}
}