mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
tools: gst-inspect: don't list pad functions
Don't print all the different pad functions, it's just confusing and no one has ever needed to know this for anything ever anyway, it's just useless information. Besides, we also label the default implementations as 'custom' implementations (the code that tries to prevent that doesn't actually work it seems). https://bugzilla.gnome.org/show_bug.cgi?id=736377
This commit is contained in:
parent
126c511e62
commit
d3de22d802
1 changed files with 0 additions and 18 deletions
|
@ -715,24 +715,6 @@ print_pad_info (GstElement * element)
|
|||
|
||||
g_print ("\n");
|
||||
|
||||
n_print (" Implementation:\n");
|
||||
if (pad->chainfunc)
|
||||
n_print (" Has chainfunc(): %s\n",
|
||||
GST_DEBUG_FUNCPTR_NAME (pad->chainfunc));
|
||||
if (pad->getrangefunc)
|
||||
n_print (" Has getrangefunc(): %s\n",
|
||||
GST_DEBUG_FUNCPTR_NAME (pad->getrangefunc));
|
||||
if (pad->eventfunc != gst_pad_event_default)
|
||||
n_print (" Has custom eventfunc(): %s\n",
|
||||
GST_DEBUG_FUNCPTR_NAME (pad->eventfunc));
|
||||
if (pad->queryfunc != gst_pad_query_default)
|
||||
n_print (" Has custom queryfunc(): %s\n",
|
||||
GST_DEBUG_FUNCPTR_NAME (pad->queryfunc));
|
||||
|
||||
if (pad->iterintlinkfunc != gst_pad_iterate_internal_links_default)
|
||||
n_print (" Has custom iterintlinkfunc(): %s\n",
|
||||
GST_DEBUG_FUNCPTR_NAME (pad->iterintlinkfunc));
|
||||
|
||||
if (pad->padtemplate)
|
||||
n_print (" Pad Template: '%s'\n", pad->padtemplate->name_template);
|
||||
|
||||
|
|
Loading…
Reference in a new issue