diff --git a/ChangeLog b/ChangeLog index 489557192d..be9839a7f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2007-06-15 Wim Taymans + + * 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 * libs/gst/base/gstdataqueue.c: (gst_data_queue_cleanup), diff --git a/plugins/elements/gstmultiqueue.c b/plugins/elements/gstmultiqueue.c index 8b1309c3be..42bf9371bf 100644 --- a/plugins/elements/gstmultiqueue.c +++ b/plugins/elements/gstmultiqueue.c @@ -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); } }