mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
changed some INFOs to DEBUGs
Original commit message from CVS: changed some INFOs to DEBUGs
This commit is contained in:
parent
ad15d09d47
commit
9d423650d3
2 changed files with 4 additions and 4 deletions
|
@ -120,7 +120,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
|
|||
desttemp->direction == GST_PAD_SINK) {
|
||||
if (gst_caps_check_compatibility (gst_padtemplate_get_caps (srctemp),
|
||||
gst_padtemplate_get_caps (desttemp))) {
|
||||
GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
"factory \"%s\" can connect with factory \"%s\"", src->name, dest->name);
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -130,7 +130,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
|
|||
}
|
||||
srctemps = g_list_next (srctemps);
|
||||
}
|
||||
GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
"factory \"%s\" cannot connect with factory \"%s\"", src->name, dest->name);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -119,7 +119,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
|
|||
if (srctemp->direction == GST_PAD_SRC &&
|
||||
desttemp->direction == GST_PAD_SINK) {
|
||||
if (gst_caps_check_compatibility (GST_PADTEMPLATE_CAPS (srctemp), GST_PADTEMPLATE_CAPS (desttemp))) {
|
||||
GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
"factory \"%s\" can connect with factory \"%s\"", src->name, dest->name);
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -129,7 +129,7 @@ gst_autoplug_can_match (GstElementFactory *src, GstElementFactory *dest)
|
|||
}
|
||||
srctemps = g_list_next (srctemps);
|
||||
}
|
||||
GST_INFO (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
GST_DEBUG (GST_CAT_AUTOPLUG_ATTEMPT,
|
||||
"factory \"%s\" cannot connect with factory \"%s\"", src->name, dest->name);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue