mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
tools/gst-inspect.c (main): Fallback to plugin if no element is found. This matches the old behavior better. Thanks t...
Original commit message from CVS: * tools/gst-inspect.c (main): Fallback to plugin if no element is found. This matches the old behavior better. Thanks to Thomas for pointing out.
This commit is contained in:
parent
4a26e6f2c7
commit
d6ae3e5426
2 changed files with 24 additions and 32 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-06-15 Johan Dahlin <johan@gnome.org>
|
||||
|
||||
* tools/gst-inspect.c (main): Fallback to plugin if no element is
|
||||
found. This matches the old behavior better. Thanks to Thomas for
|
||||
pointing out.
|
||||
|
||||
2004-06-14 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/gstcpu.c: (gst_cpuid_i386): Fix problem when using
|
||||
|
|
|
@ -1109,9 +1109,6 @@ print_element_info (GstElementFactory * factory, gboolean print_names)
|
|||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
GstElementFactory *factory;
|
||||
GstPlugin *plugin;
|
||||
gchar *so;
|
||||
gboolean print_all = FALSE;
|
||||
struct poptOption options[] = {
|
||||
{"print-all", 'a', POPT_ARG_NONE | POPT_ARGFLAG_STRIP, &print_all, 0,
|
||||
|
@ -1138,10 +1135,9 @@ main (int argc, char *argv[])
|
|||
print_element_list (print_all);
|
||||
/* else we try to get a factory */
|
||||
} else {
|
||||
GstElementFactory *factory;
|
||||
GstPlugin *plugin;
|
||||
const char *arg = argv[argc - 1];
|
||||
|
||||
/* only search for a factory if there's not a '.so' */
|
||||
if (!strstr (argv[1], ".so")) {
|
||||
int retval;
|
||||
|
||||
factory = gst_element_factory_find (arg);
|
||||
|
@ -1152,29 +1148,19 @@ main (int argc, char *argv[])
|
|||
retval = print_element_features (arg);
|
||||
}
|
||||
|
||||
if (retval)
|
||||
g_print ("No such element: '%s'\n", arg);
|
||||
|
||||
return retval;
|
||||
} else {
|
||||
/* strip the .so */
|
||||
so = strstr (argv[argc - 1], ".so");
|
||||
so[0] = '\0';
|
||||
}
|
||||
|
||||
/* otherwise assume it's a plugin */
|
||||
/* otherwise check if it's a plugin */
|
||||
if (retval) {
|
||||
plugin = gst_registry_pool_find_plugin (arg);
|
||||
|
||||
/* if there is such a plugin, print out info */
|
||||
|
||||
if (plugin) {
|
||||
print_plugin_info (plugin);
|
||||
|
||||
} else {
|
||||
g_print ("No such plugin '%s'\n", arg);
|
||||
g_print ("No such element or plugin '%s'\n", arg);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue