diff options
author | Vineeth TM <vineeth.tm@samsung.com> | 2016-03-04 15:50:26 +0900 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-03-24 14:56:51 +0200 |
commit | 8cdfb13658a069cf8c45a3265bf865849d3dc8e9 (patch) | |
tree | 93bc4a0be9c90b3e4d086328781411d9798933d8 /tools/element-templates/sinkpad-template | |
parent | c25782921324cb9ff7bfcc757257dfde05f95df3 (diff) | |
download | gstreamer-plugins-bad-8cdfb13658a069cf8c45a3265bf865849d3dc8e9.tar.gz |
bad: use new gst_element_class_add_static_pad_template()
https://bugzilla.gnome.org/show_bug.cgi?id=763081
Diffstat (limited to 'tools/element-templates/sinkpad-template')
-rw-r--r-- | tools/element-templates/sinkpad-template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/element-templates/sinkpad-template b/tools/element-templates/sinkpad-template index 785365d81..b06b346b1 100644 --- a/tools/element-templates/sinkpad-template +++ b/tools/element-templates/sinkpad-template @@ -11,8 +11,8 @@ GST_STATIC_PAD_TEMPLATE ("sink", ); % base-init - gst_element_class_add_pad_template (element_class, - gst_static_pad_template_get (&gst_replace_sink_template); + gst_element_class_add_static_pad_template (element_class, + &gst_replace_sink_template); % instance-init % methods % end |