mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
fakesink: Make event/buffer verbose output consistent with identity
This commit is contained in:
parent
b7b84671ba
commit
c8909ab059
1 changed files with 8 additions and 4 deletions
|
@ -409,7 +409,8 @@ gst_fake_sink_event (GstBaseSink * bsink, GstEvent * event)
|
|||
gst_event_parse_sink_message (event, &msg);
|
||||
sstr = gst_structure_to_string (msg->structure);
|
||||
sink->last_message =
|
||||
g_strdup_printf ("message ******* M (type: %d, %s) %p",
|
||||
g_strdup_printf ("message ******* (%s:%s) M (type: %d, %s) %p",
|
||||
GST_DEBUG_PAD_NAME (GST_BASE_SINK_CAST (sink)->sinkpad),
|
||||
GST_MESSAGE_TYPE (msg), sstr, msg);
|
||||
gst_message_unref (msg);
|
||||
} else {
|
||||
|
@ -420,7 +421,8 @@ gst_fake_sink_event (GstBaseSink * bsink, GstEvent * event)
|
|||
}
|
||||
|
||||
sink->last_message =
|
||||
g_strdup_printf ("event ******* E (type: %d, %s) %p",
|
||||
g_strdup_printf ("event ******* (%s:%s) E (type: %d, %s) %p",
|
||||
GST_DEBUG_PAD_NAME (GST_BASE_SINK_CAST (sink)->sinkpad),
|
||||
GST_EVENT_TYPE (event), sstr, event);
|
||||
}
|
||||
g_free (sstr);
|
||||
|
@ -521,9 +523,11 @@ gst_fake_sink_render (GstBaseSink * bsink, GstBuffer * buf)
|
|||
}
|
||||
|
||||
sink->last_message =
|
||||
g_strdup_printf ("chain ******* < (%5d bytes, timestamp: %s"
|
||||
g_strdup_printf ("chain ******* (%s:%s) (%u bytes, timestamp: %s"
|
||||
", duration: %s, offset: %" G_GINT64_FORMAT ", offset_end: %"
|
||||
G_GINT64_FORMAT ", flags: %d %s) %p", GST_BUFFER_SIZE (buf), ts_str,
|
||||
G_GINT64_FORMAT ", flags: %d %s) %p",
|
||||
GST_DEBUG_PAD_NAME (GST_BASE_SINK_CAST (sink)->sinkpad),
|
||||
GST_BUFFER_SIZE (buf), ts_str,
|
||||
dur_str, GST_BUFFER_OFFSET (buf), GST_BUFFER_OFFSET_END (buf),
|
||||
GST_MINI_OBJECT_CAST (buf)->flags, flag_str, buf);
|
||||
GST_OBJECT_UNLOCK (sink);
|
||||
|
|
Loading…
Reference in a new issue