From cf50b45ff63718cb9918c91f778b3e48a4bcb345 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Tue, 29 Jul 2014 14:20:42 -0300 Subject: [PATCH] decodebin: add missing 'time' word to debug message It prints the buffers, bytes and time limits, but 'time' was missing from the string. --- gst/playback/gstdecodebin2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/playback/gstdecodebin2.c b/gst/playback/gstdecodebin2.c index 4b0779bf22..c7f61704e4 100644 --- a/gst/playback/gstdecodebin2.c +++ b/gst/playback/gstdecodebin2.c @@ -3328,7 +3328,7 @@ decodebin_set_queue_size (GstDecodeBin * dbin, GstElement * multiqueue, } GST_DEBUG_OBJECT (multiqueue, "setting limits %u bytes, %u buffers, " - "%" G_GUINT64_FORMAT, max_bytes, max_buffers, max_time); + "%" G_GUINT64_FORMAT " time", max_bytes, max_buffers, max_time); g_object_set (multiqueue, "max-size-bytes", max_bytes, "max-size-time", max_time, "max-size-buffers", max_buffers, NULL);