2 * Copyright (C) 2006 Edward Hervey <edward@fluendo.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
23 #ifndef __GST_DATA_QUEUE_H__
24 #define __GST_DATA_QUEUE_H__
29 #define GST_TYPE_DATA_QUEUE \
30 (gst_data_queue_get_type())
31 #define GST_DATA_QUEUE(obj) \
32 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DATA_QUEUE,GstDataQueue))
33 #define GST_DATA_QUEUE_CLASS(klass) \
34 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DATA_QUEUE,GstDataQueueClass))
35 #define GST_IS_DATA_QUEUE(obj) \
36 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DATA_QUEUE))
37 #define GST_IS_DATA_QUEUE_CLASS(klass) \
38 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DATA_QUEUE))
39 typedef struct _GstDataQueue GstDataQueue;
40 typedef struct _GstDataQueueClass GstDataQueueClass;
41 typedef struct _GstDataQueueSize GstDataQueueSize;
42 typedef struct _GstDataQueueItem GstDataQueueItem;
46 * @object: the #GstMiniObject to queue.
47 * @size: the size in bytes of the miniobject.
48 * @duration: the duration in #GstClockTime of the miniobject. Can not be
49 * #GST_CLOCK_TIME_NONE.
50 * @visible: #TRUE if @object should be considered as a visible object.
51 * @destroy: The #GDestroyNotify function to use to free the #GstDataQueueItem.
52 * This function should also drop the reference to @object the owner of the
53 * #GstDataQueueItem is assumed to hold.
55 * Structure used by #GstDataQueue. You can supply a different structure, as
56 * long as the top of the structure is identical to this structure.
59 struct _GstDataQueueItem
61 GstMiniObject *object;
66 /* user supplied destroy function */
67 GDestroyNotify destroy;
72 * @visible: number of buffers
73 * @bytes: number of bytes
74 * @time: amount of time
76 * Structure describing the size of a queue.
78 struct _GstDataQueueSize
86 * GstDataQueueCheckFullFunction:
87 * @queue: a #GstDataQueue.
88 * @visible: The number of visible items currently in the queue.
89 * @bytes: The amount of bytes currently in the queue.
90 * @time: The accumulated duration of the items currently in the queue.
91 * @checkdata: The #gpointer registered when the #GstDataQueue was created.
93 * The prototype of the function used to inform the queue that it should be
96 * Returns: #TRUE if the queue should be considered full.
98 typedef gboolean (*GstDataQueueCheckFullFunction) (GstDataQueue * queue,
99 guint visible, guint bytes, guint64 time, gpointer checkdata);
104 * Opaque #GstDataQueue structure.
111 /* the queue of data we're keeping our grubby hands on */
114 GstDataQueueSize cur_level; /* size of the queue */
115 GstDataQueueCheckFullFunction checkfull; /* Callback to check if the queue is full */
118 GMutex *qlock; /* lock for queue (vs object lock) */
119 GCond *item_add; /* signals buffers now available for reading */
120 GCond *item_del; /* signals space now available for writing */
121 gboolean flushing; /* indicates whether conditions where signalled because
122 * of external flushing */
124 gpointer _gst_reserved[GST_PADDING];
127 struct _GstDataQueueClass
129 GObjectClass parent_class;
132 void (*empty) (GstDataQueue * queue);
133 void (*full) (GstDataQueue * queue);
135 gpointer _gst_reserved[GST_PADDING];
138 GType gst_data_queue_get_type (void);
140 GstDataQueue * gst_data_queue_new (GstDataQueueCheckFullFunction checkfull,
143 gboolean gst_data_queue_push (GstDataQueue * queue, GstDataQueueItem * item);
144 gboolean gst_data_queue_pop (GstDataQueue * queue, GstDataQueueItem ** item);
146 void gst_data_queue_flush (GstDataQueue * queue);
147 void gst_data_queue_set_flushing (GstDataQueue * queue, gboolean flushing);
149 gboolean gst_data_queue_drop_head (GstDataQueue * queue, GType type);
151 gboolean gst_data_queue_is_full (GstDataQueue * queue);
152 gboolean gst_data_queue_is_empty (GstDataQueue * queue);
154 void gst_data_queue_get_level (GstDataQueue * queue, GstDataQueueSize *level);
155 void gst_data_queue_limits_changed (GstDataQueue * queue);
159 #endif /* __GST_DATA_QUEUE_H__ */