mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
Print uri handlers too
Original commit message from CVS: Print uri handlers too
This commit is contained in:
parent
1ee670cff4
commit
34a0dbe98f
1 changed files with 8 additions and 0 deletions
|
@ -839,6 +839,14 @@ print_element_list (void)
|
||||||
g_print ("%s: %s: %s\n", plugin->name,
|
g_print ("%s: %s: %s\n", plugin->name,
|
||||||
GST_PLUGIN_FEATURE_NAME (factory), factory->longdesc);
|
GST_PLUGIN_FEATURE_NAME (factory), factory->longdesc);
|
||||||
}
|
}
|
||||||
|
else if (GST_IS_URI_HANDLER (feature)) {
|
||||||
|
GstURIHandler *handler;
|
||||||
|
|
||||||
|
handler = GST_URI_HANDLER (feature);
|
||||||
|
g_print ("%s: %s: \"%s\" (%s) element \"%s\" property \"%s\"\n", plugin->name,
|
||||||
|
GST_PLUGIN_FEATURE_NAME (handler), handler->uri, handler->longdesc,
|
||||||
|
handler->element, handler->property);
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
g_print ("%s: %s (%s)\n", plugin->name,
|
g_print ("%s: %s (%s)\n", plugin->name,
|
||||||
GST_PLUGIN_FEATURE_NAME (feature),
|
GST_PLUGIN_FEATURE_NAME (feature),
|
||||||
|
|
Loading…
Reference in a new issue