From 07818f773d49806a77b3eb9f0a835eee30e8fdab Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Tue, 30 Oct 2012 10:04:14 +1100 Subject: [PATCH] multiqueue: Add EOS status to debug output about filled/unfilled --- plugins/elements/gstmultiqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/elements/gstmultiqueue.c b/plugins/elements/gstmultiqueue.c index 8afcebb4a3..6b89f83799 100644 --- a/plugins/elements/gstmultiqueue.c +++ b/plugins/elements/gstmultiqueue.c @@ -1845,7 +1845,7 @@ single_queue_overrun_cb (GstDataQueue * dq, GstSingleQueue * sq) */ if (sq->is_eos || IS_FILLED (sq, bytes, ssize.bytes) || IS_FILLED (sq, time, sq->cur_time)) { - GST_LOG_OBJECT (mq, "Queue %d is filled", oq->id); + GST_LOG_OBJECT (mq, "Queue %d is filled EOS %d", sq->id, sq->is_eos); filled = TRUE; } }