mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-23 17:14:23 +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");
|
printf(" Availability: Always\n");
|
||||||
else if (padtemplate->presence == GST_PAD_SOMETIMES)
|
else if (padtemplate->presence == GST_PAD_SOMETIMES)
|
||||||
printf(" Availability: Sometimes\n");
|
printf(" Availability: Sometimes\n");
|
||||||
else if (padtemplate->presence == GST_PAD_REQUEST)
|
else if (padtemplate->presence == GST_PAD_REQUEST) {
|
||||||
printf(" Availability: On request\n");
|
printf(" Availability: On request\n");
|
||||||
|
printf(" Has request_new_pad() function: %s\n",
|
||||||
|
GST_DEBUG_FUNCPTR_NAME(gstelement_class->request_new_pad));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
printf(" Availability: UNKNOWN!!!\n");
|
printf(" Availability: UNKNOWN!!!\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue