mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
Some more debugging info
Original commit message from CVS: Some more debugging info
This commit is contained in:
parent
50fad82368
commit
8a2381a8ad
2 changed files with 3 additions and 3 deletions
|
@ -146,7 +146,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
|
|||
if (gst_autoplug_caps_intersect (gst_pad_template_get_caps (srctemp),
|
||||
gst_pad_template_get_caps (desttemp))) {
|
||||
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
"factory \"%s\" can connect with factory \"%s\"\n",
|
||||
"factory \"%s\" can connect with factory \"%s\"",
|
||||
GST_OBJECT_NAME (src), GST_OBJECT_NAME (dest));
|
||||
return desttemp;
|
||||
}
|
||||
|
@ -157,7 +157,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
|
|||
srctemps = g_list_next (srctemps);
|
||||
}
|
||||
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
"factory \"%s\" cannot connect with factory \"%s\"\n",
|
||||
"factory \"%s\" cannot connect with factory \"%s\"",
|
||||
GST_OBJECT_NAME (src), GST_OBJECT_NAME (dest));
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -131,7 +131,7 @@ gst_event_new (GstEventType type)
|
|||
|
||||
event = g_new0(GstEvent, 1);
|
||||
_gst_event_live++;
|
||||
GST_INFO (GST_CAT_EVENT, "creating new event %p", event);
|
||||
GST_INFO (GST_CAT_EVENT, "creating new event %p %d", event, type);
|
||||
|
||||
_GST_DATA_INIT (GST_DATA (event),
|
||||
_gst_event_type,
|
||||
|
|
Loading…
Reference in a new issue