From 0cc17ce52cd6cc858ed4958b178ca5e7f896dbe0 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Sat, 1 Nov 2003 11:56:28 +0000 Subject: CDXAParse and chart ported to new style Original commit message from CVS: CDXAParse and chart ported to new style --- gst/cdxaparse/gstcdxaparse.c | 44 ++++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 20 deletions(-) (limited to 'gst/cdxaparse/gstcdxaparse.c') diff --git a/gst/cdxaparse/gstcdxaparse.c b/gst/cdxaparse/gstcdxaparse.c index 2ee3071d..e98406eb 100644 --- a/gst/cdxaparse/gstcdxaparse.c +++ b/gst/cdxaparse/gstcdxaparse.c @@ -43,11 +43,8 @@ static GstElementDetails gst_cdxa_parse_details = { ".dat parser", "Codec/Parser", - "LGPL", "Parse a .dat file (VCD) into raw mpeg1", - VERSION, "Wim Taymans ", - "(C) 2002", }; /* CDXAParse signals and args */ @@ -83,6 +80,7 @@ GST_PAD_TEMPLATE_FACTORY (src_templ, ) ) +static void gst_cdxa_parse_base_init (gpointer g_class); static void gst_cdxa_parse_class_init (GstCDXAParseClass *klass); static void gst_cdxa_parse_init (GstCDXAParse *cdxa_parse); @@ -103,7 +101,7 @@ gst_cdxa_parse_get_type(void) if (!cdxa_parse_type) { static const GTypeInfo cdxa_parse_info = { sizeof(GstCDXAParseClass), - NULL, + gst_cdxa_parse_base_init, NULL, (GClassInitFunc)gst_cdxa_parse_class_init, NULL, @@ -117,6 +115,16 @@ gst_cdxa_parse_get_type(void) return cdxa_parse_type; } +static void +gst_cdxa_parse_base_init (gpointer g_class) +{ + GstElementClass *element_class = GST_ELEMENT_CLASS (g_class); + + gst_element_class_add_pad_template (element_class, GST_PAD_TEMPLATE_GET (src_templ)); + gst_element_class_add_pad_template (element_class, GST_PAD_TEMPLATE_GET (sink_templ)); + gst_element_class_set_details (element_class, &gst_cdxa_parse_details); +} + static void gst_cdxa_parse_class_init (GstCDXAParseClass *klass) { @@ -303,30 +311,26 @@ gst_cdxa_parse_change_state (GstElement *element) } static gboolean -plugin_init (GModule *module, GstPlugin *plugin) +plugin_init (GstPlugin *plugin) { - GstElementFactory *factory; - if (!gst_library_load ("gstbytestream")) return FALSE; - /* create an elementfactory for the cdxa_parse element */ - factory = gst_element_factory_new ("cdxaparse", GST_TYPE_CDXA_PARSE, - &gst_cdxa_parse_details); - g_return_val_if_fail (factory != NULL, FALSE); - - gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_templ)); - gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_templ)); - - gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory)); - + if (!gst_element_register (plugin, "cdxaparse", GST_RANK_NONE, GST_TYPE_CDXA_PARSE)) + return FALSE; + return TRUE; } -GstPluginDesc plugin_desc = { +GST_PLUGIN_DEFINE ( GST_VERSION_MAJOR, GST_VERSION_MINOR, "cdxaparse", - plugin_init -}; + "Parse a .dat file (VCD) into raw mpeg1", + plugin_init, + VERSION, + "LGPL", + GST_COPYRIGHT, + GST_PACKAGE, + GST_ORIGIN) -- cgit v1.2.1