2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2001-01-20 17:59:25 +00:00
|
|
|
* gstqueue.c:
|
2000-01-30 09:03:00 +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.
|
|
|
|
*/
|
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* #define DEBUG_ENABLED */
|
|
|
|
/* #define STATUS_ENABLED */
|
2002-07-08 19:22:02 +00:00
|
|
|
|
2000-06-18 13:50:18 +00:00
|
|
|
#ifdef STATUS_ENABLED
|
2001-05-25 21:00:07 +00:00
|
|
|
#define STATUS(A) GST_DEBUG(GST_CAT_DATAFLOW, A, GST_ELEMENT_NAME(queue))
|
2000-06-18 13:50:18 +00:00
|
|
|
#else
|
2001-01-20 17:59:25 +00:00
|
|
|
#define STATUS(A)
|
2000-06-18 13:50:18 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-19 00:02:53 +00:00
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "gst_private.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-19 00:02:53 +00:00
|
|
|
#include "gstqueue.h"
|
2001-05-25 21:00:07 +00:00
|
|
|
#include "gstscheduler.h"
|
2001-12-18 19:03:07 +00:00
|
|
|
#include "gstevent.h"
|
2002-07-08 19:22:02 +00:00
|
|
|
#include "gstlog.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
GstElementDetails gst_queue_details = {
|
|
|
|
"Queue",
|
2002-04-20 21:42:53 +00:00
|
|
|
"Generic",
|
2002-09-29 18:12:52 +00:00
|
|
|
"LGPL",
|
2000-01-30 09:03:00 +00:00
|
|
|
"Simple data queue",
|
|
|
|
VERSION,
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>",
|
|
|
|
"(C) 1999",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Queue signals and args */
|
|
|
|
enum {
|
2001-05-25 21:00:07 +00:00
|
|
|
LOW_WATERMARK,
|
|
|
|
HIGH_WATERMARK,
|
2000-01-30 09:03:00 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
2001-05-25 21:00:07 +00:00
|
|
|
ARG_LEVEL_BUFFERS,
|
|
|
|
ARG_LEVEL_BYTES,
|
|
|
|
ARG_LEVEL_TIME,
|
|
|
|
ARG_SIZE_BUFFERS,
|
|
|
|
ARG_SIZE_BYTES,
|
|
|
|
ARG_SIZE_TIME,
|
|
|
|
ARG_LEAKY,
|
2000-01-30 09:03:00 +00:00
|
|
|
ARG_LEVEL,
|
2000-02-13 15:20:49 +00:00
|
|
|
ARG_MAX_LEVEL,
|
2001-12-22 21:18:17 +00:00
|
|
|
ARG_MAY_DEADLOCK,
|
2002-06-03 15:44:28 +00:00
|
|
|
ARG_BLOCK_TIMEOUT,
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
static void gst_queue_class_init (GstQueueClass *klass);
|
|
|
|
static void gst_queue_init (GstQueue *queue);
|
2001-12-22 21:18:17 +00:00
|
|
|
static void gst_queue_dispose (GObject *object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
static void gst_queue_set_property (GObject *object, guint prop_id,
|
|
|
|
const GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_queue_get_property (GObject *object, guint prop_id,
|
|
|
|
GValue *value, GParamSpec *pspec);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
static void gst_queue_chain (GstPad *pad, GstBuffer *buf);
|
|
|
|
static GstBuffer * gst_queue_get (GstPad *pad);
|
|
|
|
static GstBufferPool* gst_queue_get_bufferpool (GstPad *pad);
|
2001-04-16 21:45:02 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
static gboolean gst_queue_handle_src_event (GstPad *pad, GstEvent *event);
|
|
|
|
|
|
|
|
|
|
|
|
static void gst_queue_locked_flush (GstQueue *queue);
|
2000-11-25 14:18:47 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
static GstElementStateReturn gst_queue_change_state (GstElement *element);
|
2002-05-26 21:54:27 +00:00
|
|
|
static gboolean gst_queue_release_locks (GstElement *element);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
#define GST_TYPE_QUEUE_LEAKY (queue_leaky_get_type())
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType
|
2001-05-25 21:00:07 +00:00
|
|
|
queue_leaky_get_type(void) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType queue_leaky_type = 0;
|
|
|
|
static GEnumValue queue_leaky[] = {
|
2001-08-21 20:16:48 +00:00
|
|
|
{ GST_QUEUE_NO_LEAK, "0", "Not Leaky" },
|
|
|
|
{ GST_QUEUE_LEAK_UPSTREAM, "1", "Leaky on Upstream" },
|
|
|
|
{ GST_QUEUE_LEAK_DOWNSTREAM, "2", "Leaky on Downstream" },
|
2001-05-25 21:00:07 +00:00
|
|
|
{ 0, NULL, NULL },
|
|
|
|
};
|
|
|
|
if (!queue_leaky_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
queue_leaky_type = g_enum_register_static("GstQueueLeaky", queue_leaky);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
return queue_leaky_type;
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-12-29 02:28:04 +00:00
|
|
|
static GstElementClass *parent_class = NULL;
|
2001-12-14 22:59:21 +00:00
|
|
|
/* static guint gst_queue_signals[LAST_SIGNAL] = { 0 }; */
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType
|
2001-08-21 20:16:48 +00:00
|
|
|
gst_queue_get_type(void)
|
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
static GType queue_type = 0;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
if (!queue_type) {
|
2001-06-25 01:20:11 +00:00
|
|
|
static const GTypeInfo queue_info = {
|
2000-01-30 09:03:00 +00:00
|
|
|
sizeof(GstQueueClass),
|
2001-06-25 01:20:11 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)gst_queue_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstQueue),
|
|
|
|
4,
|
|
|
|
(GInstanceInitFunc)gst_queue_init,
|
2001-09-14 22:16:47 +00:00
|
|
|
NULL
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
2001-06-25 01:20:11 +00:00
|
|
|
queue_type = g_type_register_static (GST_TYPE_ELEMENT, "GstQueue", &queue_info, 0);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
return queue_type;
|
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
|
|
|
gst_queue_class_init (GstQueueClass *klass)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2000-10-30 21:02:08 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
gobject_class = (GObjectClass*)klass;
|
2000-10-30 21:02:08 +00:00
|
|
|
gstelement_class = (GstElementClass*)klass;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LEAKY,
|
|
|
|
g_param_spec_enum ("leaky", "Leaky", "Where the queue leaks, if at all.",
|
|
|
|
GST_TYPE_QUEUE_LEAKY, GST_QUEUE_NO_LEAK, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LEVEL,
|
|
|
|
g_param_spec_int ("level", "Level", "How many buffers are in the queue.",
|
|
|
|
0, G_MAXINT, 0, G_PARAM_READABLE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAX_LEVEL,
|
|
|
|
g_param_spec_int ("max_level", "Maximum Level", "How many buffers the queue holds.",
|
|
|
|
0, G_MAXINT, 100, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAY_DEADLOCK,
|
|
|
|
g_param_spec_boolean ("may_deadlock", "May Deadlock", "The queue may deadlock if it's full and not PLAYING",
|
|
|
|
TRUE, G_PARAM_READWRITE));
|
2002-06-03 15:44:28 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BLOCK_TIMEOUT,
|
|
|
|
g_param_spec_int ("block_timeout", "Timeout for Block",
|
|
|
|
"Microseconds until blocked queue times out and returns filler event. "
|
|
|
|
"Value of -1 disables timeout",
|
|
|
|
-1, G_MAXINT, -1, G_PARAM_READWRITE));
|
2001-12-22 21:18:17 +00:00
|
|
|
|
|
|
|
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_queue_dispose);
|
|
|
|
gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_queue_set_property);
|
|
|
|
gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_queue_get_property);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
gstelement_class->change_state = GST_DEBUG_FUNCPTR(gst_queue_change_state);
|
|
|
|
gstelement_class->release_locks = GST_DEBUG_FUNCPTR(gst_queue_release_locks);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-01-13 22:22:42 +00:00
|
|
|
static GstPadConnectReturn
|
|
|
|
gst_queue_connect (GstPad *pad, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstQueue *queue = GST_QUEUE (gst_pad_get_parent (pad));
|
|
|
|
GstPad *otherpad;
|
|
|
|
|
|
|
|
if (pad == queue->srcpad)
|
|
|
|
otherpad = queue->sinkpad;
|
|
|
|
else
|
|
|
|
otherpad = queue->srcpad;
|
|
|
|
|
|
|
|
return gst_pad_proxy_connect (otherpad, caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps*
|
|
|
|
gst_queue_getcaps (GstPad *pad, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstQueue *queue = GST_QUEUE (gst_pad_get_parent (pad));
|
|
|
|
GstPad *otherpad;
|
|
|
|
|
|
|
|
if (pad == queue->srcpad)
|
|
|
|
otherpad = queue->sinkpad;
|
|
|
|
else
|
|
|
|
otherpad = queue->srcpad;
|
|
|
|
|
|
|
|
return gst_pad_get_allowed_caps (otherpad);
|
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
|
|
|
gst_queue_init (GstQueue *queue)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-12-14 22:59:21 +00:00
|
|
|
/* scheduling on this kind of element is, well, interesting */
|
2000-12-26 23:51:04 +00:00
|
|
|
GST_FLAG_SET (queue, GST_ELEMENT_DECOUPLED);
|
2001-11-14 21:09:44 +00:00
|
|
|
GST_FLAG_SET (queue, GST_ELEMENT_EVENT_AWARE);
|
2000-12-20 09:39:43 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
queue->sinkpad = gst_pad_new ("sink", GST_PAD_SINK);
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_set_chain_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_chain));
|
2000-12-11 00:24:32 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_set_bufferpool_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_get_bufferpool));
|
|
|
|
gst_pad_set_connect_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_connect));
|
|
|
|
gst_pad_set_getcaps_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_getcaps));
|
2000-09-24 14:29:49 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
queue->srcpad = gst_pad_new ("src", GST_PAD_SRC);
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_set_get_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_get));
|
2000-11-25 14:18:47 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (queue), queue->srcpad);
|
2002-01-13 22:22:42 +00:00
|
|
|
gst_pad_set_connect_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_connect));
|
|
|
|
gst_pad_set_getcaps_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_getcaps));
|
2002-05-26 21:54:27 +00:00
|
|
|
gst_pad_set_event_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_handle_src_event));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-29 03:02:14 +00:00
|
|
|
queue->leaky = GST_QUEUE_NO_LEAK;
|
2000-01-30 09:03:00 +00:00
|
|
|
queue->queue = NULL;
|
|
|
|
queue->level_buffers = 0;
|
|
|
|
queue->level_bytes = 0;
|
2001-05-25 21:00:07 +00:00
|
|
|
queue->level_time = 0LL;
|
2001-12-14 22:59:21 +00:00
|
|
|
queue->size_buffers = 100; /* 100 buffers */
|
|
|
|
queue->size_bytes = 100 * 1024; /* 100KB */
|
|
|
|
queue->size_time = 1000000000LL; /* 1sec */
|
2001-12-22 21:18:17 +00:00
|
|
|
queue->may_deadlock = TRUE;
|
2002-06-03 15:44:28 +00:00
|
|
|
queue->block_timeout = -1;
|
2002-06-09 12:13:30 +00:00
|
|
|
queue->interrupt = FALSE;
|
|
|
|
queue->flush = FALSE;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
queue->qlock = g_mutex_new ();
|
|
|
|
queue->reader = FALSE;
|
|
|
|
queue->writer = FALSE;
|
|
|
|
queue->not_empty = g_cond_new ();
|
|
|
|
queue->not_full = g_cond_new ();
|
2002-06-08 16:13:18 +00:00
|
|
|
queue->events = g_async_queue_new();
|
2002-07-08 19:22:02 +00:00
|
|
|
queue->queue = g_queue_new ();
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_THREAD, queue, "initialized queue's not_empty & not_full conditions");
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
static void
|
|
|
|
gst_queue_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GstQueue *queue = GST_QUEUE (object);
|
|
|
|
|
|
|
|
g_mutex_free (queue->qlock);
|
|
|
|
g_cond_free (queue->not_empty);
|
|
|
|
g_cond_free (queue->not_full);
|
2002-07-08 19:22:02 +00:00
|
|
|
gst_queue_locked_flush (queue);
|
|
|
|
g_queue_free (queue->queue);
|
2001-12-22 21:18:17 +00:00
|
|
|
|
2002-06-08 16:13:18 +00:00
|
|
|
g_async_queue_unref(queue->events);
|
|
|
|
|
2001-12-22 21:18:17 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
2001-04-16 21:45:02 +00:00
|
|
|
static GstBufferPool*
|
|
|
|
gst_queue_get_bufferpool (GstPad *pad)
|
|
|
|
{
|
|
|
|
GstQueue *queue;
|
|
|
|
|
|
|
|
queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
|
|
|
|
|
|
|
|
return gst_pad_get_bufferpool (queue->srcpad);
|
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
2002-07-08 19:22:02 +00:00
|
|
|
gst_queue_cleanup_data (gpointer data, const gpointer user_data)
|
2000-07-12 22:52:42 +00:00
|
|
|
{
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, user_data, "cleaning buffer %p", data);
|
2001-11-14 21:09:44 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
gst_data_unref (GST_DATA (data));
|
2000-07-12 22:52:42 +00:00
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
2001-10-27 20:28:31 +00:00
|
|
|
gst_queue_locked_flush (GstQueue *queue)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2002-07-08 19:22:02 +00:00
|
|
|
gpointer data;
|
|
|
|
|
|
|
|
while ((data = g_queue_pop_head (queue->queue))) {
|
|
|
|
gst_queue_cleanup_data (data, (gpointer) queue);
|
|
|
|
}
|
2001-01-07 03:42:27 +00:00
|
|
|
queue->timeval = NULL;
|
2002-07-08 19:22:02 +00:00
|
|
|
queue->level_buffers = 0;
|
|
|
|
queue->level_bytes = 0;
|
|
|
|
queue->level_time = 0LL;
|
2002-06-09 12:13:30 +00:00
|
|
|
/* make sure any pending buffers to be added are flushed too */
|
|
|
|
queue->flush = TRUE;
|
2000-10-30 21:02:08 +00:00
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
|
|
|
gst_queue_chain (GstPad *pad, GstBuffer *buf)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstQueue *queue;
|
2001-10-27 20:28:31 +00:00
|
|
|
gboolean reader;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-29 00:06:02 +00:00
|
|
|
queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
|
2002-06-08 16:13:18 +00:00
|
|
|
|
|
|
|
/* check for events to send upstream */
|
|
|
|
g_async_queue_lock(queue->events);
|
|
|
|
while (g_async_queue_length_unlocked(queue->events) > 0){
|
|
|
|
GstEvent *event = (GstEvent*)g_async_queue_pop_unlocked(queue->events);
|
2002-06-08 16:15:02 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "sending event upstream\n");
|
2002-06-08 16:13:18 +00:00
|
|
|
gst_pad_event_default (pad, event);
|
2002-06-08 16:15:02 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "event sent\n");
|
2002-06-08 16:13:18 +00:00
|
|
|
}
|
|
|
|
g_async_queue_unlock(queue->events);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
restart:
|
2001-10-27 20:28:31 +00:00
|
|
|
/* we have to lock the queue since we span threads */
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld", pthread_self ());
|
2001-10-27 20:28:31 +00:00
|
|
|
g_mutex_lock (queue->qlock);
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld", pthread_self ());
|
2001-10-27 20:28:31 +00:00
|
|
|
|
2002-06-09 12:13:30 +00:00
|
|
|
/* assume don't need to flush this buffer when the queue is filled */
|
|
|
|
queue->flush = FALSE;
|
|
|
|
|
2001-11-14 21:09:44 +00:00
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
switch (GST_EVENT_TYPE (buf)) {
|
2001-10-27 20:28:31 +00:00
|
|
|
case GST_EVENT_FLUSH:
|
2001-11-14 21:09:44 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
|
2001-10-27 20:28:31 +00:00
|
|
|
gst_queue_locked_flush (queue);
|
2001-11-14 21:09:44 +00:00
|
|
|
break;
|
|
|
|
case GST_EVENT_EOS:
|
2001-12-04 22:12:50 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "eos in on %s %d\n",
|
|
|
|
GST_ELEMENT_NAME (queue), queue->level_buffers);
|
2001-11-14 21:09:44 +00:00
|
|
|
break;
|
2001-10-27 20:28:31 +00:00
|
|
|
default:
|
2002-10-25 19:14:57 +00:00
|
|
|
/* we put the event in the queue, we don't have to act ourselves */
|
2001-11-14 21:09:44 +00:00
|
|
|
break;
|
2001-10-27 20:28:31 +00:00
|
|
|
}
|
2000-07-12 22:52:42 +00:00
|
|
|
}
|
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "adding buffer %p of size %d",buf,GST_BUFFER_SIZE(buf));
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
if (queue->level_buffers == queue->size_buffers) {
|
2001-12-14 22:59:21 +00:00
|
|
|
/* if this is a leaky queue... */
|
2001-05-25 21:00:07 +00:00
|
|
|
if (queue->leaky) {
|
2001-12-14 22:59:21 +00:00
|
|
|
/* FIXME don't want to leak events! */
|
|
|
|
/* if we leak on the upstream side, drop the current buffer */
|
2001-05-25 21:00:07 +00:00
|
|
|
if (queue->leaky == GST_QUEUE_LEAK_UPSTREAM) {
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
|
2001-10-27 20:28:31 +00:00
|
|
|
if (GST_IS_EVENT (buf))
|
|
|
|
fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
|
|
|
|
GST_ELEMENT_NAME(GST_ELEMENT(queue)),
|
|
|
|
GST_EVENT_TYPE(GST_EVENT(buf)));
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
|
2001-05-25 21:00:07 +00:00
|
|
|
gst_buffer_unref(buf);
|
2001-12-14 22:59:21 +00:00
|
|
|
/* now we have to clean up and exit right away */
|
2001-10-27 20:28:31 +00:00
|
|
|
g_mutex_unlock (queue->qlock);
|
2001-05-25 21:00:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-12-14 22:59:21 +00:00
|
|
|
/* otherwise we have to push a buffer off the other end */
|
2001-05-25 21:00:07 +00:00
|
|
|
else {
|
2002-07-08 19:22:02 +00:00
|
|
|
gpointer front;
|
2001-05-25 21:00:07 +00:00
|
|
|
GstBuffer *leakbuf;
|
2002-07-08 19:22:02 +00:00
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on downstream end");
|
2002-07-08 19:22:02 +00:00
|
|
|
|
|
|
|
front = g_queue_pop_head (queue->queue);
|
|
|
|
leakbuf = (GstBuffer *)(front);
|
|
|
|
|
|
|
|
if (GST_IS_EVENT (leakbuf)) {
|
2001-10-27 20:28:31 +00:00
|
|
|
fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
|
|
|
|
GST_ELEMENT_NAME(GST_ELEMENT(queue)),
|
|
|
|
GST_EVENT_TYPE(GST_EVENT(leakbuf)));
|
2002-07-08 19:22:02 +00:00
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
queue->level_buffers--;
|
|
|
|
queue->level_bytes -= GST_BUFFER_SIZE(leakbuf);
|
2002-07-08 19:22:02 +00:00
|
|
|
gst_data_unref (GST_DATA (leakbuf));
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre full wait, level:%d/%d",
|
2002-07-08 19:22:02 +00:00
|
|
|
queue->level_buffers, queue->size_buffers);
|
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
while (queue->level_buffers == queue->size_buffers) {
|
2001-12-14 22:59:21 +00:00
|
|
|
/* if there's a pending state change for this queue or its manager, switch */
|
|
|
|
/* back to iterator so bottom half of state change executes */
|
2002-05-26 21:54:27 +00:00
|
|
|
if (queue->interrupt) {
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!");
|
2001-10-27 20:28:31 +00:00
|
|
|
g_mutex_unlock (queue->qlock);
|
2002-09-12 20:52:03 +00:00
|
|
|
if (gst_scheduler_interrupt (gst_pad_get_scheduler (queue->sinkpad), GST_ELEMENT (queue)))
|
2001-12-27 00:47:41 +00:00
|
|
|
return;
|
2002-06-09 12:13:30 +00:00
|
|
|
/* if we got here bacause we were unlocked after a flush, we don't need
|
|
|
|
* to add the buffer to the queue again */
|
|
|
|
if (queue->flush) {
|
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "not adding pending buffer after flush");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "adding pending buffer after interrupt");
|
2001-12-04 22:12:50 +00:00
|
|
|
goto restart;
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
2001-12-22 21:18:17 +00:00
|
|
|
if (GST_STATE (queue) != GST_STATE_PLAYING) {
|
|
|
|
/* this means the other end is shut down */
|
|
|
|
/* try to signal to resolve the error */
|
|
|
|
if (!queue->may_deadlock) {
|
2002-07-08 19:22:02 +00:00
|
|
|
gst_data_unref (GST_DATA (buf));
|
2001-12-22 21:18:17 +00:00
|
|
|
g_mutex_unlock (queue->qlock);
|
|
|
|
gst_element_error (GST_ELEMENT (queue), "deadlock found, source pad elements are shut down");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
2002-03-30 17:05:03 +00:00
|
|
|
g_print ("%s: waiting for the app to restart source pad elements\n", GST_ELEMENT_NAME (queue));
|
2001-12-22 21:18:17 +00:00
|
|
|
}
|
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_full, level:%d/%d",
|
|
|
|
queue->level_buffers, queue->size_buffers);
|
2001-10-27 20:28:31 +00:00
|
|
|
if (queue->writer)
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple writers on queue!");
|
2001-10-27 20:28:31 +00:00
|
|
|
queue->writer = TRUE;
|
|
|
|
g_cond_wait (queue->not_full, queue->qlock);
|
|
|
|
queue->writer = FALSE;
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_full signal");
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post full wait, level:%d/%d",
|
2001-10-27 20:28:31 +00:00
|
|
|
queue->level_buffers, queue->size_buffers);
|
2000-02-13 13:43:32 +00:00
|
|
|
}
|
|
|
|
|
2000-09-24 14:29:49 +00:00
|
|
|
/* put the buffer on the tail of the list */
|
2002-07-08 19:22:02 +00:00
|
|
|
g_queue_push_tail (queue->queue, buf);
|
|
|
|
|
2000-05-21 21:58:20 +00:00
|
|
|
queue->level_buffers++;
|
2001-05-25 21:00:07 +00:00
|
|
|
queue->level_bytes += GST_BUFFER_SIZE(buf);
|
2001-12-29 03:02:14 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
/* this assertion _has_ to hold */
|
|
|
|
g_assert (queue->queue->length == queue->level_buffers);
|
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)+ level:%d/%d",
|
2001-10-27 20:28:31 +00:00
|
|
|
GST_DEBUG_PAD_NAME(pad),
|
|
|
|
queue->level_buffers, queue->size_buffers);
|
|
|
|
|
|
|
|
/* reader waiting on an empty queue */
|
|
|
|
reader = queue->reader;
|
|
|
|
|
|
|
|
g_mutex_unlock (queue->qlock);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
if (reader)
|
2001-05-25 21:00:07 +00:00
|
|
|
{
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_empty");
|
2001-10-27 20:28:31 +00:00
|
|
|
g_cond_signal (queue->not_empty);
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-21 01:27:27 +00:00
|
|
|
static GstBuffer *
|
2001-01-20 17:59:25 +00:00
|
|
|
gst_queue_get (GstPad *pad)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-02-21 20:27:54 +00:00
|
|
|
GstQueue *queue;
|
2000-01-30 09:03:00 +00:00
|
|
|
GstBuffer *buf = NULL;
|
2002-07-08 19:22:02 +00:00
|
|
|
gpointer front;
|
2001-10-27 20:28:31 +00:00
|
|
|
gboolean writer;
|
Another big set of changes. Connections are now also pullfunc based. gstqueue has been updated, I don't know of any ...
Original commit message from CVS:
Another big set of changes. Connections are now also pullfunc based.
gstqueue has been updated, I don't know of any other connections offhand.
There are still a few things that need doing, specifically the concept
of a source or connection with connections to multiple thread contexts is
not dealt with. This may force us to move the threadstate from the
element to the pad, maybe keeping the element's copy for simple cases.
Then the Bin would create a structure to pass to the cothreaded _wrappers
of any such elements, which would detail the pads that are to be dealt with
by this particular cothread context.
That will speed things up to, since we don't have to look through the list
of all pads for every Src or Connection element for every iteration, we can
simply step through the list provided by the plan. Special case might even
have a single pad pointer sitting there to trump the list, if there's only
one (the common case anyway).
Task 23098 is tracking these changes. The main task 22588 depends on that
subtask, as well as 22240, which is a consistency check on PAD_DISABLED.
2000-12-08 10:33:01 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
g_assert(pad != NULL);
|
|
|
|
g_assert(GST_IS_PAD(pad));
|
2001-02-21 20:27:54 +00:00
|
|
|
g_return_val_if_fail (pad != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
|
|
|
|
|
|
|
queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
|
2001-10-27 20:28:31 +00:00
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
restart:
|
2000-01-30 09:03:00 +00:00
|
|
|
/* have to lock for thread-safety */
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld", pthread_self ());
|
2001-10-27 20:28:31 +00:00
|
|
|
g_mutex_lock (queue->qlock);
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld %p", pthread_self (), queue->not_empty);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre empty wait, level:%d/%d", queue->level_buffers, queue->size_buffers);
|
2001-10-27 20:28:31 +00:00
|
|
|
while (queue->level_buffers == 0) {
|
2001-12-14 22:59:21 +00:00
|
|
|
/* if there's a pending state change for this queue or its manager, switch
|
|
|
|
* back to iterator so bottom half of state change executes
|
|
|
|
*/
|
2002-05-26 21:54:27 +00:00
|
|
|
//while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
|
|
|
|
if (queue->interrupt) {
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!");
|
2001-10-27 20:28:31 +00:00
|
|
|
g_mutex_unlock (queue->qlock);
|
2002-09-12 20:52:03 +00:00
|
|
|
if (gst_scheduler_interrupt (gst_pad_get_scheduler (queue->srcpad), GST_ELEMENT (queue)))
|
2001-12-31 16:02:50 +00:00
|
|
|
return NULL;
|
2001-12-04 22:12:50 +00:00
|
|
|
goto restart;
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
2001-12-22 21:18:17 +00:00
|
|
|
if (GST_STATE (queue) != GST_STATE_PLAYING) {
|
|
|
|
/* this means the other end is shut down */
|
|
|
|
if (!queue->may_deadlock) {
|
|
|
|
g_mutex_unlock (queue->qlock);
|
|
|
|
gst_element_error (GST_ELEMENT (queue), "deadlock found, sink pad elements are shut down");
|
2001-12-27 00:47:41 +00:00
|
|
|
goto restart;
|
2001-12-22 21:18:17 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-03-30 17:05:03 +00:00
|
|
|
g_print ("%s: waiting for the app to restart source pad elements\n", GST_ELEMENT_NAME (queue));
|
2001-12-22 21:18:17 +00:00
|
|
|
}
|
|
|
|
}
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_empty, level:%d/%d", queue->level_buffers, queue->size_buffers);
|
2001-10-27 20:28:31 +00:00
|
|
|
if (queue->reader)
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple readers on queue!");
|
2001-10-27 20:28:31 +00:00
|
|
|
queue->reader = TRUE;
|
2002-06-03 15:44:28 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
//if (queue->block_timeout > -1){
|
|
|
|
if (FALSE) {
|
2002-06-03 15:44:28 +00:00
|
|
|
GTimeVal timeout;
|
|
|
|
g_get_current_time(&timeout);
|
|
|
|
g_time_val_add(&timeout, queue->block_timeout);
|
|
|
|
if (!g_cond_timed_wait (queue->not_empty, queue->qlock, &timeout)){
|
|
|
|
g_mutex_unlock (queue->qlock);
|
2002-07-08 19:22:02 +00:00
|
|
|
g_warning ("filler");
|
2002-06-03 15:44:28 +00:00
|
|
|
return GST_BUFFER(gst_event_new_filler());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
g_cond_wait (queue->not_empty, queue->qlock);
|
|
|
|
}
|
2001-10-27 20:28:31 +00:00
|
|
|
queue->reader = FALSE;
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_empty signal");
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post empty wait, level:%d/%d", queue->level_buffers, queue->size_buffers);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
front = g_queue_pop_head (queue->queue);
|
|
|
|
buf = (GstBuffer *)(front);
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "retrieved buffer %p from queue", buf);
|
2000-12-21 01:27:27 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
queue->level_buffers--;
|
|
|
|
queue->level_bytes -= GST_BUFFER_SIZE(buf);
|
2001-12-29 03:02:14 +00:00
|
|
|
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)- level:%d/%d",
|
2001-10-27 20:28:31 +00:00
|
|
|
GST_DEBUG_PAD_NAME(pad),
|
|
|
|
queue->level_buffers, queue->size_buffers);
|
|
|
|
|
2001-12-29 03:02:14 +00:00
|
|
|
/* this assertion _has_ to hold */
|
2002-07-08 19:22:02 +00:00
|
|
|
g_assert (queue->queue->length == queue->level_buffers);
|
2001-12-29 03:02:14 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
/* writer waiting on a full queue */
|
|
|
|
writer = queue->writer;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
g_mutex_unlock (queue->qlock);
|
|
|
|
|
|
|
|
if (writer)
|
|
|
|
{
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_full");
|
2001-10-27 20:28:31 +00:00
|
|
|
g_cond_signal (queue->not_full);
|
|
|
|
}
|
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* FIXME where should this be? locked? */
|
2001-10-27 20:28:31 +00:00
|
|
|
if (GST_IS_EVENT(buf)) {
|
|
|
|
GstEvent *event = GST_EVENT(buf);
|
|
|
|
switch (GST_EVENT_TYPE(event)) {
|
|
|
|
case GST_EVENT_EOS:
|
2002-04-03 18:26:03 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue \"%s\" eos", GST_ELEMENT_NAME (queue));
|
2001-12-28 20:20:26 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (queue));
|
2001-10-27 20:28:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-02-13 13:43:32 +00:00
|
|
|
|
2000-12-21 01:27:27 +00:00
|
|
|
return buf;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2002-05-26 21:54:27 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_queue_handle_src_event (GstPad *pad, GstEvent *event)
|
|
|
|
{
|
|
|
|
GstQueue *queue;
|
2002-06-08 16:30:43 +00:00
|
|
|
gboolean res;
|
2002-05-26 21:54:27 +00:00
|
|
|
|
|
|
|
queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
|
|
|
|
|
2002-06-08 16:13:18 +00:00
|
|
|
g_mutex_lock (queue->qlock);
|
2002-06-08 16:30:43 +00:00
|
|
|
|
|
|
|
if (gst_element_get_state (GST_ELEMENT (queue)) == GST_STATE_PLAYING) {
|
|
|
|
/* push the event to the queue for upstream consumption */
|
|
|
|
g_async_queue_push(queue->events, event);
|
|
|
|
g_mutex_unlock (queue->qlock);
|
|
|
|
g_warning ("FIXME: sending event in a running queue");
|
|
|
|
/* FIXME wait for delivery of the event here, then return the result
|
|
|
|
* instead of FALSE */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = gst_pad_event_default (pad, event);
|
2002-06-08 16:13:18 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_FLUSH:
|
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
|
|
|
|
gst_queue_locked_flush (queue);
|
|
|
|
break;
|
|
|
|
case GST_EVENT_SEEK:
|
2002-06-09 12:13:30 +00:00
|
|
|
if (GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH) {
|
2002-06-02 15:34:34 +00:00
|
|
|
gst_queue_locked_flush (queue);
|
2002-06-09 12:13:30 +00:00
|
|
|
}
|
2002-06-08 16:13:18 +00:00
|
|
|
default:
|
|
|
|
break;
|
2002-05-26 21:54:27 +00:00
|
|
|
}
|
|
|
|
g_mutex_unlock (queue->qlock);
|
2002-06-02 15:34:34 +00:00
|
|
|
|
2002-06-08 16:13:18 +00:00
|
|
|
/* we have to claim success, but we don't really know */
|
|
|
|
return TRUE;
|
2002-05-26 21:54:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_queue_release_locks (GstElement *element)
|
|
|
|
{
|
|
|
|
GstQueue *queue;
|
|
|
|
|
|
|
|
queue = GST_QUEUE (element);
|
|
|
|
|
|
|
|
g_mutex_lock (queue->qlock);
|
|
|
|
queue->interrupt = TRUE;
|
|
|
|
g_cond_signal (queue->not_full);
|
|
|
|
g_cond_signal (queue->not_empty);
|
|
|
|
g_mutex_unlock (queue->qlock);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static GstElementStateReturn
|
|
|
|
gst_queue_change_state (GstElement *element)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-10-30 21:02:08 +00:00
|
|
|
GstQueue *queue;
|
2001-05-25 21:00:07 +00:00
|
|
|
GstElementStateReturn ret;
|
2001-12-04 22:12:50 +00:00
|
|
|
GstElementState new_state;
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_val_if_fail (GST_IS_QUEUE (element), GST_STATE_FAILURE);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
queue = GST_QUEUE (element);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
GST_DEBUG_ENTER("('%s')", GST_ELEMENT_NAME (element));
|
|
|
|
|
2001-12-14 22:59:21 +00:00
|
|
|
/* lock the queue so another thread (not in sync with this thread's state)
|
|
|
|
* can't call this queue's _get (or whatever)
|
|
|
|
*/
|
2001-12-04 22:12:50 +00:00
|
|
|
g_mutex_lock (queue->qlock);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
new_state = GST_STATE_PENDING (element);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
if (new_state == GST_STATE_READY) {
|
2001-12-04 22:12:50 +00:00
|
|
|
gst_queue_locked_flush (queue);
|
2001-05-25 21:00:07 +00:00
|
|
|
}
|
2001-12-04 22:12:50 +00:00
|
|
|
else if (new_state == GST_STATE_PLAYING) {
|
2002-07-24 21:06:17 +00:00
|
|
|
if (!GST_PAD_IS_USABLE (queue->sinkpad)) {
|
2002-05-01 20:02:40 +00:00
|
|
|
GST_DEBUG_ELEMENT (GST_CAT_STATES, queue, "queue %s is not connected", GST_ELEMENT_NAME (queue));
|
2001-12-14 22:59:21 +00:00
|
|
|
/* FIXME can this be? */
|
2001-12-04 22:12:50 +00:00
|
|
|
if (queue->reader)
|
|
|
|
g_cond_signal (queue->not_empty);
|
|
|
|
g_mutex_unlock (queue->qlock);
|
|
|
|
|
|
|
|
return GST_STATE_FAILURE;
|
|
|
|
}
|
2002-05-26 21:54:27 +00:00
|
|
|
queue->interrupt = FALSE;
|
2001-12-04 22:12:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
|
|
|
g_mutex_unlock (queue->qlock);
|
2000-10-30 21:02:08 +00:00
|
|
|
|
2001-12-04 22:12:50 +00:00
|
|
|
GST_DEBUG_LEAVE("('%s')", GST_ELEMENT_NAME (element));
|
2001-05-25 21:00:07 +00:00
|
|
|
return ret;
|
2000-10-30 21:02:08 +00:00
|
|
|
}
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
2001-06-25 01:20:11 +00:00
|
|
|
gst_queue_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstQueue *queue;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (GST_IS_QUEUE (object));
|
2001-01-20 17:59:25 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
queue = GST_QUEUE (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2001-05-25 21:00:07 +00:00
|
|
|
case ARG_LEAKY:
|
2002-01-11 15:49:47 +00:00
|
|
|
queue->leaky = g_value_get_enum (value);
|
2000-02-13 15:20:49 +00:00
|
|
|
break;
|
2001-05-25 21:00:07 +00:00
|
|
|
case ARG_MAX_LEVEL:
|
2001-12-22 21:18:17 +00:00
|
|
|
queue->size_buffers = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_MAY_DEADLOCK:
|
|
|
|
queue->may_deadlock = g_value_get_boolean (value);
|
2000-12-26 23:51:04 +00:00
|
|
|
break;
|
2002-06-03 15:44:28 +00:00
|
|
|
case ARG_BLOCK_TIMEOUT:
|
|
|
|
queue->block_timeout = g_value_get_int (value);
|
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
default:
|
2001-06-25 01:20:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-20 17:59:25 +00:00
|
|
|
static void
|
2001-06-25 01:20:11 +00:00
|
|
|
gst_queue_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstQueue *queue;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (GST_IS_QUEUE (object));
|
2001-01-20 17:59:25 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
queue = GST_QUEUE (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2001-05-25 21:00:07 +00:00
|
|
|
case ARG_LEAKY:
|
2002-01-11 15:49:47 +00:00
|
|
|
g_value_set_enum (value, queue->leaky);
|
2001-05-25 21:00:07 +00:00
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
case ARG_LEVEL:
|
2001-12-22 21:18:17 +00:00
|
|
|
g_value_set_int (value, queue->level_buffers);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
2000-02-13 15:20:49 +00:00
|
|
|
case ARG_MAX_LEVEL:
|
2001-12-22 21:18:17 +00:00
|
|
|
g_value_set_int (value, queue->size_buffers);
|
|
|
|
break;
|
|
|
|
case ARG_MAY_DEADLOCK:
|
|
|
|
g_value_set_boolean (value, queue->may_deadlock);
|
2000-12-26 23:51:04 +00:00
|
|
|
break;
|
2002-06-03 15:44:28 +00:00
|
|
|
case ARG_BLOCK_TIMEOUT:
|
|
|
|
g_value_set_int (value, queue->block_timeout);
|
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
default:
|
2001-06-25 01:20:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|