tools/gst-inspect.c: A plugin feature does unfortunatly not use the object name yet...

Original commit message from CVS:
* tools/gst-inspect.c: (print_plugin_features):
A plugin feature does unfortunatly not use the
object name yet...
This commit is contained in:
Wim Taymans 2005-05-19 08:41:42 +00:00
parent 0dd4810c73
commit 6e4b02d62b
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-05-19 Wim Taymans <wim@fluendo.com>
* tools/gst-inspect.c: (print_plugin_features):
A plugin feature does unfortunatly not use the
object name yet...
2005-05-18 Wim Taymans <wim@fluendo.com>
* gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span):

View file

@ -943,7 +943,7 @@ print_plugin_features (GstPlugin * plugin)
GstElementFactory *factory;
factory = GST_ELEMENT_FACTORY (feature);
n_print (" %s: %s\n", GST_OBJECT_NAME (factory),
n_print (" %s: %s\n", GST_PLUGIN_FEATURE_NAME (factory),
factory->details.longname);
num_elements++;
}