summaryrefslogtreecommitdiffstats
path: root/gst/cdxaparse/gstcdxaparse.c
diff options
context:
space:
mode:
authorIain Holmes <iain@prettypeople.org>2003-11-01 11:56:28 +0000
committerIain Holmes <iain@prettypeople.org>2003-11-01 11:56:28 +0000
commit0cc17ce52cd6cc858ed4958b178ca5e7f896dbe0 (patch)
tree8d2ae6d7b87f0a4d30b7052deede50513fa812e4 /gst/cdxaparse/gstcdxaparse.c
parent8d74428b85041ff69f0917ae8c2b0e29d53968cf (diff)
downloadgst-plugins-bad-0cc17ce52cd6cc858ed4958b178ca5e7f896dbe0.tar.gz
gst-plugins-bad-0cc17ce52cd6cc858ed4958b178ca5e7f896dbe0.tar.bz2
gst-plugins-bad-0cc17ce52cd6cc858ed4958b178ca5e7f896dbe0.zip
CDXAParse and chart ported to new style
Original commit message from CVS: CDXAParse and chart ported to new style
Diffstat (limited to 'gst/cdxaparse/gstcdxaparse.c')
-rw-r--r--gst/cdxaparse/gstcdxaparse.c44
1 files changed, 24 insertions, 20 deletions
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 <wim.taymans@tvd.be>",
- "(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,
@@ -118,6 +116,16 @@ gst_cdxa_parse_get_type(void)
}
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)
{
GObjectClass *gobject_class;
@@ -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)