add an optional timeout for when queue blocks. when timeout is reached a GST_EVENT_FI...
[platform/upstream/gstreamer.git] / plugins / elements / gstqueue.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstqueue.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /* #define DEBUG_ENABLED */
24 /* #define STATUS_ENABLED */
25 #ifdef STATUS_ENABLED
26 #define STATUS(A) GST_DEBUG(GST_CAT_DATAFLOW, A, GST_ELEMENT_NAME(queue))
27 #else
28 #define STATUS(A)
29 #endif
30
31 #include <pthread.h>
32
33 #include "config.h"
34 #include "gst_private.h"
35
36 #include "gstqueue.h"
37 #include "gstscheduler.h"
38 #include "gstevent.h"
39
40 GstElementDetails gst_queue_details = {
41   "Queue",
42   "Generic",
43   "Simple data queue",
44   VERSION,
45   "Erik Walthinsen <omega@cse.ogi.edu>",
46   "(C) 1999",
47 };
48
49
50 /* Queue signals and args */
51 enum {
52   LOW_WATERMARK,
53   HIGH_WATERMARK,
54   LAST_SIGNAL
55 };
56
57 enum {
58   ARG_0,
59   ARG_LEVEL_BUFFERS,
60   ARG_LEVEL_BYTES,
61   ARG_LEVEL_TIME,
62   ARG_SIZE_BUFFERS,
63   ARG_SIZE_BYTES,
64   ARG_SIZE_TIME,
65   ARG_LEAKY,
66   ARG_LEVEL,
67   ARG_MAX_LEVEL,
68   ARG_MAY_DEADLOCK,
69   ARG_BLOCK_TIMEOUT,
70 };
71
72
73 static void                     gst_queue_class_init            (GstQueueClass *klass);
74 static void                     gst_queue_init                  (GstQueue *queue);
75 static void                     gst_queue_dispose               (GObject *object);
76
77 static void                     gst_queue_set_property          (GObject *object, guint prop_id, 
78                                                                  const GValue *value, GParamSpec *pspec);
79 static void                     gst_queue_get_property          (GObject *object, guint prop_id, 
80                                                                  GValue *value, GParamSpec *pspec);
81
82 static void                     gst_queue_chain                 (GstPad *pad, GstBuffer *buf);
83 static GstBuffer *              gst_queue_get                   (GstPad *pad);
84 static GstBufferPool*           gst_queue_get_bufferpool        (GstPad *pad);
85         
86 static gboolean                 gst_queue_handle_src_event      (GstPad *pad, GstEvent *event);
87
88
89 static void                     gst_queue_locked_flush          (GstQueue *queue);
90
91 static GstElementStateReturn    gst_queue_change_state          (GstElement *element);
92 static gboolean                 gst_queue_release_locks         (GstElement *element);
93
94   
95 #define GST_TYPE_QUEUE_LEAKY (queue_leaky_get_type())
96 static GType
97 queue_leaky_get_type(void) {
98   static GType queue_leaky_type = 0;
99   static GEnumValue queue_leaky[] = {
100     { GST_QUEUE_NO_LEAK,                "0", "Not Leaky" },
101     { GST_QUEUE_LEAK_UPSTREAM,          "1", "Leaky on Upstream" },
102     { GST_QUEUE_LEAK_DOWNSTREAM,        "2", "Leaky on Downstream" },
103     { 0, NULL, NULL },
104   };
105   if (!queue_leaky_type) {
106     queue_leaky_type = g_enum_register_static("GstQueueLeaky", queue_leaky);
107   }
108   return queue_leaky_type;
109 }
110
111 static GstElementClass *parent_class = NULL;
112 /* static guint gst_queue_signals[LAST_SIGNAL] = { 0 }; */
113
114 GType
115 gst_queue_get_type(void) 
116 {
117   static GType queue_type = 0;
118
119   if (!queue_type) {
120     static const GTypeInfo queue_info = {
121       sizeof(GstQueueClass),
122       NULL,
123       NULL,
124       (GClassInitFunc)gst_queue_class_init,
125       NULL,
126       NULL,
127       sizeof(GstQueue),
128       4,
129       (GInstanceInitFunc)gst_queue_init,
130       NULL
131     };
132     queue_type = g_type_register_static (GST_TYPE_ELEMENT, "GstQueue", &queue_info, 0);
133   }
134   return queue_type;
135 }
136
137 static void
138 gst_queue_class_init (GstQueueClass *klass)
139 {
140   GObjectClass *gobject_class;
141   GstElementClass *gstelement_class;
142
143   gobject_class = (GObjectClass*)klass;
144   gstelement_class = (GstElementClass*)klass;
145
146   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
147
148   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LEAKY,
149     g_param_spec_enum ("leaky", "Leaky", "Where the queue leaks, if at all.",
150                        GST_TYPE_QUEUE_LEAKY, GST_QUEUE_NO_LEAK, G_PARAM_READWRITE));
151   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LEVEL,
152     g_param_spec_int ("level", "Level", "How many buffers are in the queue.",
153                       0, G_MAXINT, 0, G_PARAM_READABLE));
154   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAX_LEVEL,
155     g_param_spec_int ("max_level", "Maximum Level", "How many buffers the queue holds.",
156                       0, G_MAXINT, 100, G_PARAM_READWRITE));
157   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAY_DEADLOCK,
158     g_param_spec_boolean ("may_deadlock", "May Deadlock", "The queue may deadlock if it's full and not PLAYING",
159                       TRUE, G_PARAM_READWRITE));
160   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BLOCK_TIMEOUT,
161     g_param_spec_int ("block_timeout", "Timeout for Block", 
162                       "Microseconds until blocked queue times out and returns filler event. "
163                       "Value of -1 disables timeout",
164                       -1, G_MAXINT, -1, G_PARAM_READWRITE));
165
166   gobject_class->dispose                = GST_DEBUG_FUNCPTR (gst_queue_dispose);
167   gobject_class->set_property           = GST_DEBUG_FUNCPTR (gst_queue_set_property);
168   gobject_class->get_property           = GST_DEBUG_FUNCPTR (gst_queue_get_property);
169
170   gstelement_class->change_state  = GST_DEBUG_FUNCPTR(gst_queue_change_state);
171   gstelement_class->release_locks = GST_DEBUG_FUNCPTR(gst_queue_release_locks);
172 }
173
174 static GstPadConnectReturn
175 gst_queue_connect (GstPad *pad, GstCaps *caps)
176 {
177   GstQueue *queue = GST_QUEUE (gst_pad_get_parent (pad));
178   GstPad *otherpad;
179
180   if (pad == queue->srcpad) 
181     otherpad = queue->sinkpad;
182   else
183     otherpad = queue->srcpad;
184
185   return gst_pad_proxy_connect (otherpad, caps);
186 }
187
188 static GstCaps*
189 gst_queue_getcaps (GstPad *pad, GstCaps *caps)
190 {
191   GstQueue *queue = GST_QUEUE (gst_pad_get_parent (pad));
192   GstPad *otherpad;
193
194   if (pad == queue->srcpad) 
195     otherpad = queue->sinkpad;
196   else
197     otherpad = queue->srcpad;
198
199   return gst_pad_get_allowed_caps (otherpad);
200 }
201
202 static void
203 gst_queue_init (GstQueue *queue)
204 {
205   /* scheduling on this kind of element is, well, interesting */
206   GST_FLAG_SET (queue, GST_ELEMENT_DECOUPLED);
207   GST_FLAG_SET (queue, GST_ELEMENT_EVENT_AWARE);
208
209   queue->sinkpad = gst_pad_new ("sink", GST_PAD_SINK);
210   gst_pad_set_chain_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_chain));
211   gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
212   gst_pad_set_bufferpool_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_get_bufferpool));
213   gst_pad_set_connect_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_connect));
214   gst_pad_set_getcaps_function (queue->sinkpad, GST_DEBUG_FUNCPTR (gst_queue_getcaps));
215
216   queue->srcpad = gst_pad_new ("src", GST_PAD_SRC);
217   gst_pad_set_get_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_get));
218   gst_element_add_pad (GST_ELEMENT (queue), queue->srcpad);
219   gst_pad_set_connect_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_connect));
220   gst_pad_set_getcaps_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_getcaps));
221   gst_pad_set_event_function (queue->srcpad, GST_DEBUG_FUNCPTR (gst_queue_handle_src_event));
222
223   queue->leaky = GST_QUEUE_NO_LEAK;
224   queue->queue = NULL;
225   queue->level_buffers = 0;
226   queue->level_bytes = 0;
227   queue->level_time = 0LL;
228   queue->size_buffers = 100;            /* 100 buffers */
229   queue->size_bytes = 100 * 1024;       /* 100KB */
230   queue->size_time = 1000000000LL;      /* 1sec */
231   queue->may_deadlock = TRUE;
232   queue->block_timeout = -1;
233
234   queue->qlock = g_mutex_new ();
235   queue->reader = FALSE;
236   queue->writer = FALSE;
237   queue->not_empty = g_cond_new ();
238   queue->not_full = g_cond_new ();
239   GST_DEBUG_ELEMENT (GST_CAT_THREAD, queue, "initialized queue's not_empty & not_full conditions");
240 }
241
242 static void
243 gst_queue_dispose (GObject *object)
244 {
245   GstQueue *queue = GST_QUEUE (object);
246
247   g_mutex_free (queue->qlock);
248   g_cond_free (queue->not_empty);
249   g_cond_free (queue->not_full);
250
251   G_OBJECT_CLASS (parent_class)->dispose (object);
252 }
253
254 static GstBufferPool*
255 gst_queue_get_bufferpool (GstPad *pad)
256 {
257   GstQueue *queue;
258
259   queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
260
261   return gst_pad_get_bufferpool (queue->srcpad);
262 }
263
264 static void
265 gst_queue_cleanup_buffers (gpointer data, const gpointer user_data)
266 {
267   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, user_data, "cleaning buffer %p", data);
268
269   if (GST_IS_BUFFER (data)) {
270     gst_buffer_unref (GST_BUFFER (data));
271   }
272   else {
273     gst_event_free (GST_EVENT (data));
274   }
275 }
276
277 static void
278 gst_queue_locked_flush (GstQueue *queue)
279 {
280   g_list_foreach (queue->queue, gst_queue_cleanup_buffers,
281                   (gpointer) queue);
282   g_list_free (queue->queue);
283
284   queue->queue = NULL;
285   queue->level_buffers = 0;
286   queue->timeval = NULL;
287 }
288
289 static void
290 gst_queue_chain (GstPad *pad, GstBuffer *buf)
291 {
292   GstQueue *queue;
293   gboolean reader;
294
295   g_return_if_fail (pad != NULL);
296   g_return_if_fail (GST_IS_PAD (pad));
297   g_return_if_fail (buf != NULL);
298
299   queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
300
301 restart:
302   /* we have to lock the queue since we span threads */
303   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld", pthread_self ());
304   g_mutex_lock (queue->qlock);
305   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld", pthread_self ());
306
307   if (GST_IS_EVENT (buf)) {
308     switch (GST_EVENT_TYPE (buf)) {
309       case GST_EVENT_FLUSH:
310         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
311         gst_queue_locked_flush (queue);
312         break;
313       case GST_EVENT_EOS:
314         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "eos in on %s %d\n", 
315                            GST_ELEMENT_NAME (queue), queue->level_buffers);
316         break;
317       case GST_EVENT_DISCONTINUOUS:
318         gst_queue_locked_flush (queue);
319         break;
320       default:
321         /*gst_pad_event_default (pad, GST_EVENT (buf)); */
322         break;
323     }
324   }
325
326   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "adding buffer %p of size %d",buf,GST_BUFFER_SIZE(buf));
327
328   if (queue->level_buffers == queue->size_buffers) {
329     /* if this is a leaky queue... */
330     if (queue->leaky) {
331       /* FIXME don't want to leak events! */
332       /* if we leak on the upstream side, drop the current buffer */
333       if (queue->leaky == GST_QUEUE_LEAK_UPSTREAM) {
334         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
335         if (GST_IS_EVENT (buf))
336           fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
337               GST_ELEMENT_NAME(GST_ELEMENT(queue)),
338               GST_EVENT_TYPE(GST_EVENT(buf)));
339           GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
340         gst_buffer_unref(buf);
341         /* now we have to clean up and exit right away */
342         g_mutex_unlock (queue->qlock);
343         return;
344       }
345       /* otherwise we have to push a buffer off the other end */
346       else {
347         GList *front;
348         GstBuffer *leakbuf;
349         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on downstream end");
350         front = queue->queue;
351         leakbuf = (GstBuffer *)(front->data);
352         if (GST_IS_EVENT (leakbuf))
353           fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
354               GST_ELEMENT_NAME(GST_ELEMENT(queue)),
355               GST_EVENT_TYPE(GST_EVENT(leakbuf)));
356         queue->level_buffers--;
357         queue->level_bytes -= GST_BUFFER_SIZE(leakbuf);
358         gst_buffer_unref(leakbuf);
359         queue->queue = g_list_remove_link (queue->queue, front);
360         g_list_free (front);
361       }
362     }
363
364     GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre full wait, level:%d/%d",
365         queue->level_buffers, queue->size_buffers);
366     while (queue->level_buffers == queue->size_buffers) {
367       /* if there's a pending state change for this queue or its manager, switch */
368       /* back to iterator so bottom half of state change executes */
369       //while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
370       if (queue->interrupt) {
371         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!");
372         g_mutex_unlock (queue->qlock);
373         if (gst_element_interrupt (GST_ELEMENT (queue)))
374           return;
375         goto restart;
376       }
377       if (GST_STATE (queue) != GST_STATE_PLAYING) {
378         /* this means the other end is shut down */
379         /* try to signal to resolve the error */
380         if (!queue->may_deadlock) {
381           if (GST_IS_BUFFER (buf)) gst_buffer_unref (buf);
382           else gst_event_free (GST_EVENT (buf));
383           g_mutex_unlock (queue->qlock);
384           gst_element_error (GST_ELEMENT (queue), "deadlock found, source pad elements are shut down");
385           return;
386         }
387         else {
388           g_print ("%s: waiting for the app to restart source pad elements\n", GST_ELEMENT_NAME (queue));
389         }
390       }
391
392       GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_full, level:%d/%d", 
393                       queue->level_buffers, queue->size_buffers);
394       if (queue->writer)
395         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple writers on queue!");
396       queue->writer = TRUE;
397       g_cond_wait (queue->not_full, queue->qlock);
398       queue->writer = FALSE;
399       GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_full signal");
400     }
401     GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post full wait, level:%d/%d",
402         queue->level_buffers, queue->size_buffers);
403   }
404
405   /* put the buffer on the tail of the list */
406   queue->queue = g_list_append (queue->queue, buf);
407   queue->level_buffers++;
408   queue->level_bytes += GST_BUFFER_SIZE(buf);
409
410   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)+ level:%d/%d",
411       GST_DEBUG_PAD_NAME(pad),
412       queue->level_buffers, queue->size_buffers);
413
414   /* this assertion _has_ to hold */
415   /* g_assert (g_list_length (queue->queue) == queue->level_buffers); */
416
417   /* reader waiting on an empty queue */
418   reader = queue->reader;
419
420   g_mutex_unlock (queue->qlock);
421
422   if (reader)
423   {
424     GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_empty");
425     g_cond_signal (queue->not_empty);
426   }
427 }
428
429 static GstBuffer *
430 gst_queue_get (GstPad *pad)
431 {
432   GstQueue *queue;
433   GstBuffer *buf = NULL;
434   GList *front;
435   gboolean writer;
436
437   g_assert(pad != NULL);
438   g_assert(GST_IS_PAD(pad));
439   g_return_val_if_fail (pad != NULL, NULL);
440   g_return_val_if_fail (GST_IS_PAD (pad), NULL);
441
442   queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
443
444 restart:
445   /* have to lock for thread-safety */
446   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld", pthread_self ());
447   g_mutex_lock (queue->qlock);
448   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld %p", pthread_self (), queue->not_empty);
449
450   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre empty wait, level:%d/%d", queue->level_buffers, queue->size_buffers);
451   while (queue->level_buffers == 0) {
452     /* if there's a pending state change for this queue or its manager, switch
453      * back to iterator so bottom half of state change executes
454      */ 
455     //while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
456     if (queue->interrupt) {
457       GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!");
458       g_mutex_unlock (queue->qlock);
459       if (gst_element_interrupt (GST_ELEMENT (queue)))
460         return NULL;
461       goto restart;
462     }
463     if (GST_STATE (queue) != GST_STATE_PLAYING) {
464       /* this means the other end is shut down */
465       if (!queue->may_deadlock) {
466         g_mutex_unlock (queue->qlock);
467         gst_element_error (GST_ELEMENT (queue), "deadlock found, sink pad elements are shut down");
468         goto restart;
469       }
470       else {
471         g_print ("%s: waiting for the app to restart source pad elements\n", GST_ELEMENT_NAME (queue));
472       }
473     }
474
475     GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_empty, level:%d/%d", queue->level_buffers, queue->size_buffers);
476     if (queue->reader)
477       GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple readers on queue!");
478     queue->reader = TRUE;
479     
480     if (queue->block_timeout > -1){
481       GTimeVal timeout;
482       g_get_current_time(&timeout);
483       g_time_val_add(&timeout, queue->block_timeout);
484       if (!g_cond_timed_wait (queue->not_empty, queue->qlock, &timeout)){
485         g_mutex_unlock (queue->qlock);
486         return GST_BUFFER(gst_event_new_filler());
487       }
488     }
489     else {
490       g_cond_wait (queue->not_empty, queue->qlock);
491     }
492     queue->reader = FALSE;
493     GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_empty signal");
494   }
495   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post empty wait, level:%d/%d", queue->level_buffers, queue->size_buffers);
496
497   front = queue->queue;
498   buf = (GstBuffer *)(front->data);
499   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "retrieved buffer %p from queue", buf);
500   queue->queue = g_list_remove_link (queue->queue, front);
501   g_list_free (front);
502
503   queue->level_buffers--;
504   queue->level_bytes -= GST_BUFFER_SIZE(buf);
505
506   GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)- level:%d/%d",
507       GST_DEBUG_PAD_NAME(pad),
508       queue->level_buffers, queue->size_buffers);
509
510   /* this assertion _has_ to hold */
511   /* g_assert (g_list_length (queue->queue) == queue->level_buffers); */
512
513   /* writer waiting on a full queue */
514   writer = queue->writer;
515
516   g_mutex_unlock (queue->qlock);
517
518   if (writer)
519   {
520     GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_full");
521     g_cond_signal (queue->not_full);
522   }
523
524   /* FIXME where should this be? locked? */
525   if (GST_IS_EVENT(buf)) {
526     GstEvent *event = GST_EVENT(buf);
527     switch (GST_EVENT_TYPE(event)) {
528       case GST_EVENT_EOS:
529         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue \"%s\" eos", GST_ELEMENT_NAME (queue));
530         gst_element_set_eos (GST_ELEMENT (queue));
531         break;
532       default:
533         break;
534     }
535   }
536
537   return buf;
538 }
539
540
541 static gboolean
542 gst_queue_handle_src_event (GstPad *pad, GstEvent *event)
543 {
544   GstQueue *queue;
545   gboolean res = TRUE;
546
547   queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
548
549   g_mutex_lock (queue->qlock);
550
551   if (gst_element_get_state (GST_ELEMENT (queue)) == GST_STATE_PLAYING) {
552     g_mutex_unlock (queue->qlock);
553     g_warning ("queue event in playing state");
554     return FALSE;
555   }
556
557   res = gst_pad_event_default (pad, event); 
558   if (res) { 
559     switch (GST_EVENT_TYPE (event)) {
560       case GST_EVENT_FLUSH:
561         GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
562         gst_queue_locked_flush (queue);
563         break;
564       case GST_EVENT_SEEK:
565         if (GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH)
566           gst_queue_locked_flush (queue);
567       default:
568         break;
569     }
570   }
571   g_mutex_unlock (queue->qlock);
572
573   return res;
574 }
575
576 static gboolean
577 gst_queue_release_locks (GstElement *element)
578 {
579   GstQueue *queue;
580
581   queue = GST_QUEUE (element);
582
583   g_mutex_lock (queue->qlock);
584   queue->interrupt = TRUE;
585   g_cond_signal (queue->not_full);
586   g_cond_signal (queue->not_empty); 
587   g_mutex_unlock (queue->qlock);
588
589   return TRUE;
590 }
591
592 static GstElementStateReturn
593 gst_queue_change_state (GstElement *element)
594 {
595   GstQueue *queue;
596   GstElementStateReturn ret;
597   GstElementState new_state;
598   g_return_val_if_fail (GST_IS_QUEUE (element), GST_STATE_FAILURE);
599
600   queue = GST_QUEUE (element);
601
602   GST_DEBUG_ENTER("('%s')", GST_ELEMENT_NAME (element));
603
604   /* lock the queue so another thread (not in sync with this thread's state)
605    * can't call this queue's _get (or whatever)
606    */
607   g_mutex_lock (queue->qlock);
608
609   new_state = GST_STATE_PENDING (element);
610
611   if (new_state == GST_STATE_PAUSED) {
612     /*g_cond_signal (queue->not_full); */
613     /*g_cond_signal (queue->not_empty); */
614   }
615   else if (new_state == GST_STATE_READY) {
616     gst_queue_locked_flush (queue);
617   }
618   else if (new_state == GST_STATE_PLAYING) {
619     if (!GST_PAD_IS_CONNECTED (queue->sinkpad)) {
620       GST_DEBUG_ELEMENT (GST_CAT_STATES, queue, "queue %s is not connected", GST_ELEMENT_NAME (queue));
621       /* FIXME can this be? */
622       if (queue->reader)
623         g_cond_signal (queue->not_empty);
624       g_mutex_unlock (queue->qlock);
625
626       return GST_STATE_FAILURE;
627     }
628     queue->interrupt = FALSE;
629   }
630
631   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element);
632   g_mutex_unlock (queue->qlock);
633
634   GST_DEBUG_LEAVE("('%s')", GST_ELEMENT_NAME (element));
635   return ret;
636 }
637
638
639 static void
640 gst_queue_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
641 {
642   GstQueue *queue;
643
644   /* it's not null if we got it, but it might not be ours */
645   g_return_if_fail (GST_IS_QUEUE (object));
646
647   queue = GST_QUEUE (object);
648
649   switch (prop_id) {
650     case ARG_LEAKY:
651       queue->leaky = g_value_get_enum (value);
652       break;
653     case ARG_MAX_LEVEL:
654       queue->size_buffers = g_value_get_int (value);
655       break;
656     case ARG_MAY_DEADLOCK:
657       queue->may_deadlock = g_value_get_boolean (value);
658       break;
659     case ARG_BLOCK_TIMEOUT:
660       queue->block_timeout = g_value_get_int (value);
661       break;
662     default:
663       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
664       break;
665   }
666 }
667
668 static void
669 gst_queue_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
670 {
671   GstQueue *queue;
672
673   /* it's not null if we got it, but it might not be ours */
674   g_return_if_fail (GST_IS_QUEUE (object));
675
676   queue = GST_QUEUE (object);
677
678   switch (prop_id) {
679     case ARG_LEAKY:
680       g_value_set_enum (value, queue->leaky);
681       break;
682     case ARG_LEVEL:
683       g_value_set_int (value, queue->level_buffers);
684       break;
685     case ARG_MAX_LEVEL:
686       g_value_set_int (value, queue->size_buffers);
687       break;
688     case ARG_MAY_DEADLOCK:
689       g_value_set_boolean (value, queue->may_deadlock);
690       break;
691     case ARG_BLOCK_TIMEOUT:
692       g_value_set_int (value, queue->block_timeout);
693       break;
694     default:
695       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
696       break;
697   }
698 }