Print uri handlers too

Original commit message from CVS:
Print uri handlers too
This commit is contained in:
Wim Taymans 2003-01-16 21:22:26 +00:00
parent 1ee670cff4
commit 34a0dbe98f

View file

@ -839,6 +839,14 @@ print_element_list (void)
g_print ("%s: %s: %s\n", plugin->name,
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 {
g_print ("%s: %s (%s)\n", plugin->name,
GST_PLUGIN_FEATURE_NAME (feature),