mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Print out the request pad function.
Original commit message from CVS: Print out the request pad function.
This commit is contained in:
parent
93c163032d
commit
d9f96e3201
1 changed files with 4 additions and 1 deletions
|
@ -122,8 +122,11 @@ print_element_info (GstElementFactory *factory)
|
|||
printf(" Availability: Always\n");
|
||||
else if (padtemplate->presence == GST_PAD_SOMETIMES)
|
||||
printf(" Availability: Sometimes\n");
|
||||
else if (padtemplate->presence == GST_PAD_REQUEST)
|
||||
else if (padtemplate->presence == GST_PAD_REQUEST) {
|
||||
printf(" Availability: On request\n");
|
||||
printf(" Has request_new_pad() function: %s\n",
|
||||
GST_DEBUG_FUNCPTR_NAME(gstelement_class->request_new_pad));
|
||||
}
|
||||
else
|
||||
printf(" Availability: UNKNOWN!!!\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue