mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
decodebin: add missing 'time' word to debug message
It prints the buffers, bytes and time limits, but 'time' was missing from the string.
This commit is contained in:
parent
362e9a547b
commit
cf50b45ff6
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue