mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
element: access padtemplate list directly to avoid call and type check.
This commit is contained in:
parent
82f66b4036
commit
211b2e4338
1 changed files with 2 additions and 2 deletions
|
@ -1033,7 +1033,7 @@ gst_element_get_request_pad (GstElement * element, const gchar * name)
|
|||
templ_found = TRUE;
|
||||
} else {
|
||||
/* there is no % in the name, try to find a matching template */
|
||||
list = gst_element_class_get_pad_template_list (class);
|
||||
list = class->padtemplates;
|
||||
while (!templ_found && list) {
|
||||
templ = (GstPadTemplate *) list->data;
|
||||
if (templ->presence == GST_PAD_REQUEST) {
|
||||
|
@ -1322,7 +1322,7 @@ gst_element_class_get_pad_template (GstElementClass * element_class,
|
|||
g_return_val_if_fail (GST_IS_ELEMENT_CLASS (element_class), NULL);
|
||||
g_return_val_if_fail (name != NULL, NULL);
|
||||
|
||||
padlist = gst_element_class_get_pad_template_list (element_class);
|
||||
padlist = element_class->padtemplates;
|
||||
|
||||
while (padlist) {
|
||||
GstPadTemplate *padtempl = (GstPadTemplate *) padlist->data;
|
||||
|
|
Loading…
Reference in a new issue