diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2016-02-27 15:28:49 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-02-28 13:10:03 +0000 |
commit | fa12d23a17dbd16d4df552da1ca016c53fa038fb (patch) | |
tree | a2e3246fe2daec617952a6df1af85563f57ad3e7 /win32/common | |
parent | 94ec3f8a3e2919676576059983fa74e4c4047311 (diff) |
element: add gst_element_class_add_static_pad_template()
Pretty much every single element does
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&some_templ));
which is both confusing and unnecessary. We might just
as well add a function to do that in one step.
https://bugzilla.gnome.org/show_bug.cgi?id=762778
Diffstat (limited to 'win32/common')
-rw-r--r-- | win32/common/libgstreamer.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/common/libgstreamer.def b/win32/common/libgstreamer.def index 9f96c1301..3fa3c401a 100644 --- a/win32/common/libgstreamer.def +++ b/win32/common/libgstreamer.def @@ -480,6 +480,7 @@ EXPORTS gst_element_class_add_metadata gst_element_class_add_pad_template gst_element_class_add_static_metadata + gst_element_class_add_static_pad_template gst_element_class_get_metadata gst_element_class_get_pad_template gst_element_class_get_pad_template_list |