mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
tools: gst-inspect: stop printing element state_change function
This is really not interesting at all, not sure why we print this.
This commit is contained in:
parent
465094f071
commit
b8b03f69b0
1 changed files with 0 additions and 15 deletions
|
@ -616,20 +616,6 @@ print_element_flag_info (GstElement * element)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
print_implementation_info (GstElement * element)
|
|
||||||
{
|
|
||||||
GstElementClass *gstelement_class;
|
|
||||||
|
|
||||||
gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
|
|
||||||
|
|
||||||
n_print ("\n");
|
|
||||||
n_print ("Element Implementation:\n");
|
|
||||||
|
|
||||||
n_print (" Has change_state() function: %s\n",
|
|
||||||
GST_DEBUG_FUNCPTR_NAME (gstelement_class->change_state));
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
print_clocking_info (GstElement * element)
|
print_clocking_info (GstElement * element)
|
||||||
{
|
{
|
||||||
|
@ -1349,7 +1335,6 @@ print_element_info (GstPluginFeature * feature, gboolean print_names)
|
||||||
|
|
||||||
print_pad_templates_info (element, factory);
|
print_pad_templates_info (element, factory);
|
||||||
print_element_flag_info (element);
|
print_element_flag_info (element);
|
||||||
print_implementation_info (element);
|
|
||||||
print_clocking_info (element);
|
print_clocking_info (element);
|
||||||
print_uri_handler_info (element);
|
print_uri_handler_info (element);
|
||||||
print_pad_info (element);
|
print_pad_info (element);
|
||||||
|
|
Loading…
Reference in a new issue