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>
|
|
|
|
*
|
|
|
|
* gstqueue.h:
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_QUEUE_H__
|
|
|
|
#define __GST_QUEUE_H__
|
|
|
|
|
|
|
|
|
2001-01-19 00:02:53 +00:00
|
|
|
#include <gst/gstelement.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
G_BEGIN_DECLS
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-04-14 23:02:41 +00:00
|
|
|
extern GstElementDetails gst_queue_details;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define GST_TYPE_QUEUE \
|
|
|
|
(gst_queue_get_type())
|
|
|
|
#define GST_QUEUE(obj) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_QUEUE,GstQueue))
|
2000-01-30 09:03:00 +00:00
|
|
|
#define GST_QUEUE_CLASS(klass) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_QUEUE,GstQueueClass))
|
2000-01-30 09:03:00 +00:00
|
|
|
#define GST_IS_QUEUE(obj) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_QUEUE))
|
2000-01-30 09:03:00 +00:00
|
|
|
#define GST_IS_QUEUE_CLASS(obj) \
|
2001-06-25 01:20:11 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_QUEUE))
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
enum {
|
|
|
|
GST_QUEUE_NO_LEAK = 0,
|
|
|
|
GST_QUEUE_LEAK_UPSTREAM = 1,
|
|
|
|
GST_QUEUE_LEAK_DOWNSTREAM = 2
|
|
|
|
};
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
typedef struct _GstQueue GstQueue;
|
|
|
|
typedef struct _GstQueueClass GstQueueClass;
|
|
|
|
|
|
|
|
struct _GstQueue {
|
2000-12-29 02:28:04 +00:00
|
|
|
GstElement element;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
GstPad *sinkpad;
|
|
|
|
GstPad *srcpad;
|
|
|
|
|
|
|
|
/* the queue of buffers we're keeping our grubby hands on */
|
2002-07-08 19:22:02 +00:00
|
|
|
GQueue *queue;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-29 03:05:34 +00:00
|
|
|
guint level_buffers; /* number of buffers queued here */
|
|
|
|
guint level_bytes; /* number of bytes queued here */
|
2001-05-25 21:00:07 +00:00
|
|
|
guint64 level_time; /* amount of time queued here */
|
|
|
|
|
2001-12-29 03:05:34 +00:00
|
|
|
guint size_buffers; /* size of queue in buffers */
|
|
|
|
guint size_bytes; /* size of queue in bytes */
|
2001-05-25 21:00:07 +00:00
|
|
|
guint64 size_time; /* size of queue in time */
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
gint leaky; /* whether the queue is leaky, and if so at which end */
|
2002-06-03 15:44:28 +00:00
|
|
|
gint block_timeout; /* microseconds until a blocked queue times out and returns GST_EVENT_FILLER.
|
|
|
|
* A value of -1 will block forever. */
|
2001-12-22 21:18:17 +00:00
|
|
|
gboolean may_deadlock; /* it the queue should fail on possible deadlocks */
|
2002-05-26 21:54:27 +00:00
|
|
|
gboolean interrupt;
|
2002-06-09 12:13:56 +00:00
|
|
|
gboolean flush;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2001-10-27 20:28:31 +00:00
|
|
|
GMutex *qlock; /* lock for queue (vs object lock) */
|
|
|
|
/* we are single reader and single writer queue */
|
|
|
|
gboolean reader; /* reader waiting on empty queue */
|
|
|
|
gboolean writer; /* writer waiting on full queue */
|
|
|
|
GCond *not_empty; /* signals buffers now available for reading */
|
|
|
|
GCond *not_full; /* signals space now available for writing */
|
2001-01-07 14:49:23 +00:00
|
|
|
|
2001-01-07 03:42:27 +00:00
|
|
|
GTimeVal *timeval; /* the timeout for the queue locking */
|
2002-06-08 16:13:18 +00:00
|
|
|
GAsyncQueue *events; /* upstream events get decoupled here */
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstQueueClass {
|
2000-12-29 02:28:04 +00:00
|
|
|
GstElementClass parent_class;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
|
|
|
/* signal callbacks */
|
|
|
|
void (*low_watermark) (GstQueue *queue, gint level);
|
|
|
|
void (*high_watermark) (GstQueue *queue, gint level);
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
GType gst_queue_get_type (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:22:02 +00:00
|
|
|
G_END_DECLS
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GST_QUEUE_H__ */
|