From 134605648ce19b04ca77fcb3722f87eb0db0c2e4 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Fri, 20 Jan 2006 09:12:10 +0000 Subject: [PATCH] tools/: URL_HANDLER is not a plugin feature we can search for in the registry. Original commit message from CVS: * tools/gst-inspect.c: (print_element_features): * tools/gst-xmlinspect.c: (main): URL_HANDLER is not a plugin feature we can search for in the registry. --- ChangeLog | 7 +++++++ tools/gst-inspect.c | 8 -------- tools/gst-xmlinspect.c | 8 -------- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index fd513dee00..991fdd60e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-01-20 Jan Schmidt + + * tools/gst-inspect.c: (print_element_features): + * tools/gst-xmlinspect.c: (main): + URL_HANDLER is not a plugin feature we can search for in + the registry. + 2006-01-19 Edward Hervey * gst/gstelement.c: (gst_element_pads_activate): diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 2141894e67..cac8b56a54 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -1031,14 +1031,6 @@ print_element_features (const gchar * element_name) n_print ("%s: a typefind function\n", element_name); return 0; } -#ifndef GST_DISABLE_URI - feature = gst_default_registry_find_feature (element_name, - GST_TYPE_URI_HANDLER); - if (feature) { - n_print ("%s: an uri handler\n", element_name); - return 0; - } -#endif return -1; } diff --git a/tools/gst-xmlinspect.c b/tools/gst-xmlinspect.c index 04bfd26f67..d7f5a07852 100644 --- a/tools/gst-xmlinspect.c +++ b/tools/gst-xmlinspect.c @@ -825,14 +825,6 @@ main (int argc, char *argv[]) g_print ("%s: a type find function\n", argv[1]); return 0; } -#ifndef GST_DISABLE_URI - feature = gst_default_registry_find_feature (argv[1], - GST_TYPE_URI_HANDLER); - if (feature) { - g_print ("%s: an uri handler\n", argv[1]); - return 0; - } -#endif } } else { /* strip the .so */