alloctrace: show details of events and messages leaked

So it's clearer what leaked.
This commit is contained in:
Tim-Philipp Müller 2015-10-16 12:00:50 +01:00
parent 0a5fbd4d3b
commit 424477d00e

View file

@ -165,6 +165,20 @@ gst_alloc_trace_print (const GstAllocTrace * trace)
if (type == GST_TYPE_CAPS) { if (type == GST_TYPE_CAPS) {
extra = gst_caps_to_string (data); extra = gst_caps_to_string (data);
} else if (type == GST_TYPE_EVENT) {
const GstStructure *s = gst_event_get_structure (data);
if (s == NULL)
extra = g_strdup_printf ("%s", GST_EVENT_TYPE_NAME (data));
else
extra = gst_structure_to_string (s);
} else if (type == GST_TYPE_MESSAGE) {
const GstStructure *s = gst_message_get_structure (data);
if (s == NULL)
extra = g_strdup_printf ("%s", GST_MESSAGE_TYPE_NAME (data));
else
extra = gst_structure_to_string (s);
} }
refcount = GST_MINI_OBJECT_REFCOUNT_VALUE (data); refcount = GST_MINI_OBJECT_REFCOUNT_VALUE (data);
} }