diff options
author | Andy Wingo <wingo@pobox.com> | 2002-04-11 20:42:25 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-04-11 20:42:25 +0000 |
commit | 3a9c675a6819ecd54c84d1810b7abe055fde3864 (patch) | |
tree | 8a98875ab1b8a5e21eb0df5e707d14fce8687eb6 /sys/oss/gstossgst.c | |
parent | 18c6c04fdcc76ee66884a65c4bc7f6ce48d4398e (diff) |
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.
Diffstat (limited to 'sys/oss/gstossgst.c')
-rw-r--r-- | sys/oss/gstossgst.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/oss/gstossgst.c b/sys/oss/gstossgst.c index fbaa903e..71b9f9cf 100644 --- a/sys/oss/gstossgst.c +++ b/sys/oss/gstossgst.c @@ -69,7 +69,7 @@ static GstPadTemplate* ossgst_src_factory (void) { return - gst_padtemplate_new ( + gst_pad_template_new ( "src", GST_PAD_SRC, GST_PAD_ALWAYS, @@ -435,11 +435,11 @@ gst_ossgst_factory_init (GstPlugin *plugin) plugin_dir = g_strjoinv (G_DIR_SEPARATOR_S, path); g_strfreev (path); - factory = gst_elementfactory_new ("ossgst", GST_TYPE_OSSGST, &gst_ossgst_details); + factory = gst_element_factory_new ("ossgst", GST_TYPE_OSSGST, &gst_ossgst_details); g_return_val_if_fail (factory != NULL, FALSE); gst_ossgst_src_template = ossgst_src_factory (); - gst_elementfactory_add_padtemplate (factory, gst_ossgst_src_template); + gst_element_factory_add_pad_template (factory, gst_ossgst_src_template); gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory)); |