mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
plugins/elements/gstmultiqueue.c: Remove debug printf.
Original commit message from CVS: * plugins/elements/gstmultiqueue.c: (gst_single_queue_flush), (update_time_level), (apply_segment), (apply_buffer), (gst_single_queue_push_one), (gst_multi_queue_item_new), (gst_multi_queue_loop), (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event), (single_queue_overrun_cb), (single_queue_underrun_cb), (single_queue_check_full): Remove debug printf.
This commit is contained in:
parent
0a3da772bb
commit
7eeb31033d
2 changed files with 10 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2007-06-15 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* plugins/elements/gstmultiqueue.c: (gst_single_queue_flush),
|
||||
(update_time_level), (apply_segment), (apply_buffer),
|
||||
(gst_single_queue_push_one), (gst_multi_queue_item_new),
|
||||
(gst_multi_queue_loop), (gst_multi_queue_sink_activate_push),
|
||||
(gst_multi_queue_sink_event), (single_queue_overrun_cb),
|
||||
(single_queue_underrun_cb), (single_queue_check_full):
|
||||
Remove debug printf.
|
||||
|
||||
2007-06-15 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* libs/gst/base/gstdataqueue.c: (gst_data_queue_cleanup),
|
||||
|
|
|
@ -1053,7 +1053,6 @@ single_queue_overrun_cb (GstDataQueue * dq, GstSingleQueue * sq)
|
|||
GST_DEBUG_OBJECT (mq,
|
||||
"Another queue is empty, bumping single queue %d max visible to %d",
|
||||
sq->id, sq->max_size.visible);
|
||||
g_print ("overrun: queue %d, limit %d\n", sq->id, sq->max_size.visible);
|
||||
}
|
||||
GST_MULTI_QUEUE_MUTEX_UNLOCK (mq);
|
||||
goto beach;
|
||||
|
@ -1092,8 +1091,6 @@ single_queue_underrun_cb (GstDataQueue * dq, GstSingleQueue * sq)
|
|||
GST_DEBUG_OBJECT (mq,
|
||||
"queue %d is filled, bumping its max visible to %d", sq->id,
|
||||
sq->max_size.visible);
|
||||
g_print ("underrun: queue %d, limit %d\n", sq->id,
|
||||
sq->max_size.visible);
|
||||
gst_data_queue_limits_changed (sq->queue);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue