From 06d94641c271dc846e335104ac61beab38445c4a Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 11 Apr 2002 20:42:26 +0000 Subject: GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE same with *factory and typefind. Original commit message from CVS: GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE same with *factory and typefind. also, some -Werror fixes. --- ext/audiofile/gstafsink.c | 10 +++++----- ext/audiofile/gstafsrc.c | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'ext/audiofile') diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c index 620082c9..bf570fbb 100644 --- a/ext/audiofile/gstafsink.c +++ b/ext/audiofile/gstafsink.c @@ -51,7 +51,7 @@ enum { /* added a sink factory function to force audio/raw MIME type */ /* I think the caps can be broader, we need to change that somehow */ -GST_PADTEMPLATE_FACTORY (afsink_sink_factory, +GST_PAD_TEMPLATE_FACTORY (afsink_sink_factory, "sink", GST_PAD_SINK, GST_PAD_ALWAYS, @@ -178,7 +178,7 @@ gst_afsink_init (GstAFSink *afsink) /* GstPad *pad; this is now done in the struct */ afsink->sinkpad = gst_pad_new_from_template ( - GST_PADTEMPLATE_GET (afsink_sink_factory), "sink"); + GST_PAD_TEMPLATE_GET (afsink_sink_factory), "sink"); gst_element_add_pad (GST_ELEMENT (afsink), afsink->sinkpad); gst_pad_set_chain_function (afsink->sinkpad, gst_afsink_chain); @@ -259,11 +259,11 @@ plugin_init (GModule *module, GstPlugin *plugin) { GstElementFactory *factory; - factory = gst_elementfactory_new ("afsink", GST_TYPE_AFSINK, + factory = gst_element_factory_new ("afsink", GST_TYPE_AFSINK, &afsink_details); g_return_val_if_fail (factory != NULL, FALSE); - gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (afsink_sink_factory)); + gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (afsink_sink_factory)); gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory)); @@ -499,7 +499,7 @@ gst_afsink_factory_init (GstElementFactory *factory) { GstPadTemplate *sink_pt; sink_pt = afsink_sink_factory(); - gst_elementfactory_add_padtemplate (factory, sink_pt); + gst_element_factory_add_pad_template (factory, sink_pt); return TRUE; diff --git a/ext/audiofile/gstafsrc.c b/ext/audiofile/gstafsrc.c index 5f9d4dbe..92483179 100644 --- a/ext/audiofile/gstafsrc.c +++ b/ext/audiofile/gstafsrc.c @@ -50,7 +50,7 @@ enum { /* added a src factory function to force audio/raw MIME type */ /* I think the caps can be broader, we need to change that somehow */ -GST_PADTEMPLATE_FACTORY (afsrc_src_factory, +GST_PAD_TEMPLATE_FACTORY (afsrc_src_factory, "src", GST_PAD_SRC, GST_PAD_ALWAYS, @@ -276,11 +276,11 @@ plugin_init (GModule *module, GstPlugin *plugin) { GstElementFactory *factory; - factory = gst_elementfactory_new ("afsrc", GST_TYPE_AFSRC, + factory = gst_element_factory_new ("afsrc", GST_TYPE_AFSRC, &afsrc_details); g_return_val_if_fail (factory != NULL, FALSE); - gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (afsrc_src_factory)); + gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (afsrc_src_factory)); gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory)); -- cgit v1.2.1