From aa7a4be370e1bbe7b9d02c677bcab7b545172f69 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 2 Nov 2003 20:58:22 +0000 Subject: And again one more Original commit message from CVS: And again one more --- gst/mpeg1videoparse/gstmp1videoparse.c | 58 ++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 27 deletions(-) (limited to 'gst') diff --git a/gst/mpeg1videoparse/gstmp1videoparse.c b/gst/mpeg1videoparse/gstmp1videoparse.c index 6bb3ddf3..cbaef247 100644 --- a/gst/mpeg1videoparse/gstmp1videoparse.c +++ b/gst/mpeg1videoparse/gstmp1videoparse.c @@ -32,14 +32,11 @@ #define SEQ_END_CODE 0x000001b7 /* elementfactory information */ -static GstElementDetails mp1videoparse_details = { +static GstElementDetails mpeg1videoparse_details = { "MPEG 1 Video Parser", "Codec/Parser", - "LGPL", - "Parses and frames MPEG 1 video streams, provides seek", - VERSION, - "Wim Taymans ", - "(C) 2000", + "Parses and frames MPEG 1 video streams, provides seek" + "Wim Taymans " }; GST_PAD_TEMPLATE_FACTORY (src_factory, @@ -83,6 +80,7 @@ enum { }; static void gst_mp1videoparse_class_init (Mp1VideoParseClass *klass); +static void gst_mp1videoparse_base_init (Mp1VideoParseClass *klass); static void gst_mp1videoparse_init (Mp1VideoParse *mp1videoparse); static void gst_mp1videoparse_chain (GstPad *pad, GstData *_data); @@ -101,7 +99,8 @@ mp1videoparse_get_type (void) if (!mp1videoparse_type) { static const GTypeInfo mp1videoparse_info = { - sizeof(Mp1VideoParseClass), NULL, + sizeof(Mp1VideoParseClass), + (GBaseInitFunc)gst_mp1videoparse_base_init, NULL, (GClassInitFunc)gst_mp1videoparse_class_init, NULL, @@ -115,6 +114,18 @@ mp1videoparse_get_type (void) return mp1videoparse_type; } +static void +gst_mp1videoparse_base_init (Mp1VideoParseClass *klass) +{ + GstElementClass *element_class = GST_ELEMENT_CLASS (klass); + + gst_element_class_add_pad_template (element_class, + GST_PAD_TEMPLATE_GET (src_factory)); + gst_element_class_add_pad_template (element_class, + GST_PAD_TEMPLATE_GET (sink_factory)); + gst_element_class_set_details (element_class, &mpeg1videoparse_details); +} + static void gst_mp1videoparse_class_init (Mp1VideoParseClass *klass) { @@ -481,28 +492,21 @@ gst_mp1videoparse_change_state (GstElement *element) } static gboolean -plugin_init (GModule *module, GstPlugin *plugin) +plugin_init (GstPlugin *plugin) { - GstElementFactory *factory; - - /* create an elementfactory for the mp1videoparse element */ - factory = gst_element_factory_new("mp1videoparse",GST_TYPE_MP1VIDEOPARSE, - &mp1videoparse_details); - g_return_val_if_fail(factory != NULL, FALSE); - - gst_element_factory_add_pad_template (factory, - GST_PAD_TEMPLATE_GET (src_factory)); - gst_element_factory_add_pad_template (factory, - GST_PAD_TEMPLATE_GET (sink_factory)); - - gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory)); - - return TRUE; + return gst_element_register (plugin, "mpeg1videoparse", + GST_RANK_NONE, GST_TYPE_MP1VIDEOPARSE); } -GstPluginDesc plugin_desc = { +GST_PLUGIN_DEFINE ( GST_VERSION_MAJOR, GST_VERSION_MINOR, - "mp1videoparse", - plugin_init -}; + "mpeg1videoparse", + "MPEG-1 video parser", + plugin_init, + VERSION, + GST_LICENSE, + GST_COPYRIGHT, + GST_PACKAGE, + GST_ORIGIN +) -- cgit v1.2.1