diff --git a/ChangeLog b/ChangeLog index 2d6f3636e9..c23a81fe60 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-05-19 Wim Taymans + + * tools/gst-inspect.c: (print_plugin_features): + A plugin feature does unfortunatly not use the + object name yet... + 2005-05-18 Wim Taymans * gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span): diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index e0aca2efd9..4c9854ace4 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -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++; }