2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
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.
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.
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.
23 /* #define DEBUG_ENABLED */
24 /* #define STATUS_ENABLED */
26 #define STATUS(A) GST_DEBUG(GST_CAT_DATAFLOW, A, GST_ELEMENT_NAME(queue))
34 #include "gst_private.h"
37 #include "gstscheduler.h"
40 GstElementDetails gst_queue_details = {
45 "Erik Walthinsen <omega@cse.ogi.edu>",
50 /* Queue signals and args */
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);
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);
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);
86 static gboolean gst_queue_handle_src_event (GstPad *pad, GstEvent *event);
89 static void gst_queue_locked_flush (GstQueue *queue);
91 static GstElementStateReturn gst_queue_change_state (GstElement *element);
92 static gboolean gst_queue_release_locks (GstElement *element);
95 #define GST_TYPE_QUEUE_LEAKY (queue_leaky_get_type())
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" },
105 if (!queue_leaky_type) {
106 queue_leaky_type = g_enum_register_static("GstQueueLeaky", queue_leaky);
108 return queue_leaky_type;
111 static GstElementClass *parent_class = NULL;
112 /* static guint gst_queue_signals[LAST_SIGNAL] = { 0 }; */
115 gst_queue_get_type(void)
117 static GType queue_type = 0;
120 static const GTypeInfo queue_info = {
121 sizeof(GstQueueClass),
124 (GClassInitFunc)gst_queue_class_init,
129 (GInstanceInitFunc)gst_queue_init,
132 queue_type = g_type_register_static (GST_TYPE_ELEMENT, "GstQueue", &queue_info, 0);
138 gst_queue_class_init (GstQueueClass *klass)
140 GObjectClass *gobject_class;
141 GstElementClass *gstelement_class;
143 gobject_class = (GObjectClass*)klass;
144 gstelement_class = (GstElementClass*)klass;
146 parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
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));
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);
170 gstelement_class->change_state = GST_DEBUG_FUNCPTR(gst_queue_change_state);
171 gstelement_class->release_locks = GST_DEBUG_FUNCPTR(gst_queue_release_locks);
174 static GstPadConnectReturn
175 gst_queue_connect (GstPad *pad, GstCaps *caps)
177 GstQueue *queue = GST_QUEUE (gst_pad_get_parent (pad));
180 if (pad == queue->srcpad)
181 otherpad = queue->sinkpad;
183 otherpad = queue->srcpad;
185 return gst_pad_proxy_connect (otherpad, caps);
189 gst_queue_getcaps (GstPad *pad, GstCaps *caps)
191 GstQueue *queue = GST_QUEUE (gst_pad_get_parent (pad));
194 if (pad == queue->srcpad)
195 otherpad = queue->sinkpad;
197 otherpad = queue->srcpad;
199 return gst_pad_get_allowed_caps (otherpad);
203 gst_queue_init (GstQueue *queue)
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);
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));
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));
223 queue->leaky = GST_QUEUE_NO_LEAK;
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;
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 queue->events = g_async_queue_new();
240 GST_DEBUG_ELEMENT (GST_CAT_THREAD, queue, "initialized queue's not_empty & not_full conditions");
244 gst_queue_dispose (GObject *object)
246 GstQueue *queue = GST_QUEUE (object);
248 g_mutex_free (queue->qlock);
249 g_cond_free (queue->not_empty);
250 g_cond_free (queue->not_full);
252 g_async_queue_unref(queue->events);
254 G_OBJECT_CLASS (parent_class)->dispose (object);
257 static GstBufferPool*
258 gst_queue_get_bufferpool (GstPad *pad)
262 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
264 return gst_pad_get_bufferpool (queue->srcpad);
268 gst_queue_cleanup_buffers (gpointer data, const gpointer user_data)
270 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, user_data, "cleaning buffer %p", data);
272 if (GST_IS_BUFFER (data)) {
273 gst_buffer_unref (GST_BUFFER (data));
276 gst_event_free (GST_EVENT (data));
281 gst_queue_locked_flush (GstQueue *queue)
283 g_list_foreach (queue->queue, gst_queue_cleanup_buffers,
285 g_list_free (queue->queue);
288 queue->level_buffers = 0;
289 queue->timeval = NULL;
293 gst_queue_chain (GstPad *pad, GstBuffer *buf)
298 g_return_if_fail (pad != NULL);
299 g_return_if_fail (GST_IS_PAD (pad));
300 g_return_if_fail (buf != NULL);
302 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
304 /* check for events to send upstream */
305 g_async_queue_lock(queue->events);
306 while (g_async_queue_length_unlocked(queue->events) > 0){
307 GstEvent *event = (GstEvent*)g_async_queue_pop_unlocked(queue->events);
308 g_print("sending event upstream\n");
309 gst_pad_event_default (pad, event);
310 g_print("event sent\n");
312 g_async_queue_unlock(queue->events);
315 /* we have to lock the queue since we span threads */
316 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld", pthread_self ());
317 g_mutex_lock (queue->qlock);
318 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld", pthread_self ());
320 if (GST_IS_EVENT (buf)) {
321 switch (GST_EVENT_TYPE (buf)) {
322 case GST_EVENT_FLUSH:
323 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
324 gst_queue_locked_flush (queue);
327 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "eos in on %s %d\n",
328 GST_ELEMENT_NAME (queue), queue->level_buffers);
330 case GST_EVENT_DISCONTINUOUS:
331 gst_queue_locked_flush (queue);
334 /*gst_pad_event_default (pad, GST_EVENT (buf)); */
339 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "adding buffer %p of size %d",buf,GST_BUFFER_SIZE(buf));
341 if (queue->level_buffers == queue->size_buffers) {
342 /* if this is a leaky queue... */
344 /* FIXME don't want to leak events! */
345 /* if we leak on the upstream side, drop the current buffer */
346 if (queue->leaky == GST_QUEUE_LEAK_UPSTREAM) {
347 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
348 if (GST_IS_EVENT (buf))
349 fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
350 GST_ELEMENT_NAME(GST_ELEMENT(queue)),
351 GST_EVENT_TYPE(GST_EVENT(buf)));
352 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on upstream end");
353 gst_buffer_unref(buf);
354 /* now we have to clean up and exit right away */
355 g_mutex_unlock (queue->qlock);
358 /* otherwise we have to push a buffer off the other end */
362 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue is full, leaking buffer on downstream end");
363 front = queue->queue;
364 leakbuf = (GstBuffer *)(front->data);
365 if (GST_IS_EVENT (leakbuf))
366 fprintf(stderr, "Error: queue [%s] leaked an event, type:%d\n",
367 GST_ELEMENT_NAME(GST_ELEMENT(queue)),
368 GST_EVENT_TYPE(GST_EVENT(leakbuf)));
369 queue->level_buffers--;
370 queue->level_bytes -= GST_BUFFER_SIZE(leakbuf);
371 gst_buffer_unref(leakbuf);
372 queue->queue = g_list_remove_link (queue->queue, front);
377 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre full wait, level:%d/%d",
378 queue->level_buffers, queue->size_buffers);
379 while (queue->level_buffers == queue->size_buffers) {
380 /* if there's a pending state change for this queue or its manager, switch */
381 /* back to iterator so bottom half of state change executes */
382 //while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
383 if (queue->interrupt) {
384 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!");
385 g_mutex_unlock (queue->qlock);
386 if (gst_scheduler_interrupt (GST_RPAD_SCHED (queue->sinkpad), GST_ELEMENT (queue)))
390 if (GST_STATE (queue) != GST_STATE_PLAYING) {
391 /* this means the other end is shut down */
392 /* try to signal to resolve the error */
393 if (!queue->may_deadlock) {
394 if (GST_IS_BUFFER (buf)) gst_buffer_unref (buf);
395 else gst_event_free (GST_EVENT (buf));
396 g_mutex_unlock (queue->qlock);
397 gst_element_error (GST_ELEMENT (queue), "deadlock found, source pad elements are shut down");
401 g_print ("%s: waiting for the app to restart source pad elements\n", GST_ELEMENT_NAME (queue));
405 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_full, level:%d/%d",
406 queue->level_buffers, queue->size_buffers);
408 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple writers on queue!");
409 queue->writer = TRUE;
410 g_cond_wait (queue->not_full, queue->qlock);
411 queue->writer = FALSE;
412 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_full signal");
414 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post full wait, level:%d/%d",
415 queue->level_buffers, queue->size_buffers);
418 /* put the buffer on the tail of the list */
419 queue->queue = g_list_append (queue->queue, buf);
420 queue->level_buffers++;
421 queue->level_bytes += GST_BUFFER_SIZE(buf);
423 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)+ level:%d/%d",
424 GST_DEBUG_PAD_NAME(pad),
425 queue->level_buffers, queue->size_buffers);
427 /* this assertion _has_ to hold */
428 /* g_assert (g_list_length (queue->queue) == queue->level_buffers); */
430 /* reader waiting on an empty queue */
431 reader = queue->reader;
433 g_mutex_unlock (queue->qlock);
437 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_empty");
438 g_cond_signal (queue->not_empty);
443 gst_queue_get (GstPad *pad)
446 GstBuffer *buf = NULL;
450 g_assert(pad != NULL);
451 g_assert(GST_IS_PAD(pad));
452 g_return_val_if_fail (pad != NULL, NULL);
453 g_return_val_if_fail (GST_IS_PAD (pad), NULL);
455 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
460 /* have to lock for thread-safety */
461 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locking t:%ld", pthread_self ());
462 g_mutex_lock (queue->qlock);
463 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "locked t:%ld %p", pthread_self (), queue->not_empty);
465 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "pre empty wait, level:%d/%d", queue->level_buffers, queue->size_buffers);
466 while (queue->level_buffers == 0) {
467 /* if there's a pending state change for this queue or its manager, switch
468 * back to iterator so bottom half of state change executes
470 //while (GST_STATE_PENDING (queue) != GST_STATE_VOID_PENDING) {
471 if (queue->interrupt) {
472 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "interrupted!!");
473 g_mutex_unlock (queue->qlock);
474 if (gst_scheduler_interrupt (GST_RPAD_SCHED (queue->srcpad), GST_ELEMENT (queue)))
478 if (GST_STATE (queue) != GST_STATE_PLAYING) {
479 /* this means the other end is shut down */
480 if (!queue->may_deadlock) {
481 g_mutex_unlock (queue->qlock);
482 gst_element_error (GST_ELEMENT (queue), "deadlock found, sink pad elements are shut down");
486 g_print ("%s: waiting for the app to restart source pad elements\n", GST_ELEMENT_NAME (queue));
490 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "waiting for not_empty, level:%d/%d", queue->level_buffers, queue->size_buffers);
492 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "WARNING: multiple readers on queue!");
493 queue->reader = TRUE;
495 if (queue->block_timeout > -1){
497 g_get_current_time(&timeout);
498 g_time_val_add(&timeout, queue->block_timeout);
499 if (!g_cond_timed_wait (queue->not_empty, queue->qlock, &timeout)){
500 g_mutex_unlock (queue->qlock);
501 return GST_BUFFER(gst_event_new_filler());
505 g_cond_wait (queue->not_empty, queue->qlock);
507 queue->reader = FALSE;
508 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "got not_empty signal");
510 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "post empty wait, level:%d/%d", queue->level_buffers, queue->size_buffers);
512 front = queue->queue;
513 buf = (GstBuffer *)(front->data);
514 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "retrieved buffer %p from queue", buf);
515 queue->queue = g_list_remove_link (queue->queue, front);
518 queue->level_buffers--;
519 queue->level_bytes -= GST_BUFFER_SIZE(buf);
521 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "(%s:%s)- level:%d/%d",
522 GST_DEBUG_PAD_NAME(pad),
523 queue->level_buffers, queue->size_buffers);
525 /* this assertion _has_ to hold */
526 /* g_assert (g_list_length (queue->queue) == queue->level_buffers); */
528 /* writer waiting on a full queue */
529 writer = queue->writer;
531 g_mutex_unlock (queue->qlock);
535 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "signalling not_full");
536 g_cond_signal (queue->not_full);
539 /* FIXME where should this be? locked? */
540 if (GST_IS_EVENT(buf)) {
541 GstEvent *event = GST_EVENT(buf);
542 switch (GST_EVENT_TYPE(event)) {
544 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "queue \"%s\" eos", GST_ELEMENT_NAME (queue));
545 gst_element_set_eos (GST_ELEMENT (queue));
557 gst_queue_handle_src_event (GstPad *pad, GstEvent *event)
561 queue = GST_QUEUE (GST_OBJECT_PARENT (pad));
563 /* push the event to the queue for upstream consumption */
564 g_async_queue_push(queue->events, event);
566 g_mutex_lock (queue->qlock);
567 switch (GST_EVENT_TYPE (event)) {
568 case GST_EVENT_FLUSH:
569 GST_DEBUG_ELEMENT (GST_CAT_DATAFLOW, queue, "FLUSH event, flushing queue\n");
570 gst_queue_locked_flush (queue);
573 if (GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH)
574 gst_queue_locked_flush (queue);
578 g_mutex_unlock (queue->qlock);
580 /* we have to claim success, but we don't really know */
585 gst_queue_release_locks (GstElement *element)
589 queue = GST_QUEUE (element);
591 g_mutex_lock (queue->qlock);
592 queue->interrupt = TRUE;
593 g_cond_signal (queue->not_full);
594 g_cond_signal (queue->not_empty);
595 g_mutex_unlock (queue->qlock);
600 static GstElementStateReturn
601 gst_queue_change_state (GstElement *element)
604 GstElementStateReturn ret;
605 GstElementState new_state;
606 g_return_val_if_fail (GST_IS_QUEUE (element), GST_STATE_FAILURE);
608 queue = GST_QUEUE (element);
610 GST_DEBUG_ENTER("('%s')", GST_ELEMENT_NAME (element));
612 /* lock the queue so another thread (not in sync with this thread's state)
613 * can't call this queue's _get (or whatever)
615 g_mutex_lock (queue->qlock);
617 new_state = GST_STATE_PENDING (element);
619 if (new_state == GST_STATE_PAUSED) {
620 /*g_cond_signal (queue->not_full); */
621 /*g_cond_signal (queue->not_empty); */
623 else if (new_state == GST_STATE_READY) {
624 gst_queue_locked_flush (queue);
626 else if (new_state == GST_STATE_PLAYING) {
627 if (!GST_PAD_IS_CONNECTED (queue->sinkpad)) {
628 GST_DEBUG_ELEMENT (GST_CAT_STATES, queue, "queue %s is not connected", GST_ELEMENT_NAME (queue));
629 /* FIXME can this be? */
631 g_cond_signal (queue->not_empty);
632 g_mutex_unlock (queue->qlock);
634 return GST_STATE_FAILURE;
636 queue->interrupt = FALSE;
639 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element);
640 g_mutex_unlock (queue->qlock);
642 GST_DEBUG_LEAVE("('%s')", GST_ELEMENT_NAME (element));
648 gst_queue_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
652 /* it's not null if we got it, but it might not be ours */
653 g_return_if_fail (GST_IS_QUEUE (object));
655 queue = GST_QUEUE (object);
659 queue->leaky = g_value_get_enum (value);
662 queue->size_buffers = g_value_get_int (value);
664 case ARG_MAY_DEADLOCK:
665 queue->may_deadlock = g_value_get_boolean (value);
667 case ARG_BLOCK_TIMEOUT:
668 queue->block_timeout = g_value_get_int (value);
671 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
677 gst_queue_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
681 /* it's not null if we got it, but it might not be ours */
682 g_return_if_fail (GST_IS_QUEUE (object));
684 queue = GST_QUEUE (object);
688 g_value_set_enum (value, queue->leaky);
691 g_value_set_int (value, queue->level_buffers);
694 g_value_set_int (value, queue->size_buffers);
696 case ARG_MAY_DEADLOCK:
697 g_value_set_boolean (value, queue->may_deadlock);
699 case ARG_BLOCK_TIMEOUT:
700 g_value_set_int (value, queue->block_timeout);
703 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);