summaryrefslogtreecommitdiffstats
path: root/gst/flx
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-11-02 17:36:30 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-11-02 17:36:30 +0000
commit8c8cebf1101ff4241624b732b515490e9dd8c92d (patch)
tree887550159ce61956291d661944bbcd6278b8af17 /gst/flx
parent1b570ee7b8d02f7db029650d19212bdca9e61ea6 (diff)
more, and more, and more...
Original commit message from CVS: more, and more, and more...
Diffstat (limited to 'gst/flx')
-rw-r--r--gst/flx/gstflxdec.c49
1 files changed, 28 insertions, 21 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c
index f4e085c3..7140067d 100644
--- a/gst/flx/gstflxdec.c
+++ b/gst/flx/gstflxdec.c
@@ -32,11 +32,8 @@
static GstElementDetails flxdec_details = {
"FLX Decoder",
"Codec/Audio/Decoder",
- "LGPL",
"FLX decoder",
- VERSION,
- "Sepp Wijnands <mrrazz@garbage-coderz.net>",
- "(C) 2001",
+ "Sepp Wijnands <mrrazz@garbage-coderz.net>"
};
/* Flx signals and args */
@@ -83,6 +80,7 @@ GST_PAD_TEMPLATE_FACTORY (src_video_factory,
static void gst_flxdec_class_init (GstFlxDecClass *klass);
+static void gst_flxdec_base_init (GstFlxDecClass *klass);
static void gst_flxdec_init (GstFlxDec *flxdec);
static void gst_flxdec_loop (GstElement *element);
@@ -110,7 +108,8 @@ gst_flxdec_get_type(void)
if (!flxdec_type) {
static const GTypeInfo flxdec_info = {
- sizeof(GstFlxDecClass), NULL,
+ sizeof(GstFlxDecClass),
+ (GBaseInitFunc)gst_flxdec_base_init,
NULL,
(GClassInitFunc)gst_flxdec_class_init,
NULL,
@@ -124,6 +123,18 @@ gst_flxdec_get_type(void)
return flxdec_type;
}
+static void
+gst_flxdec_base_init (GstFlxDecClass *klass)
+{
+ GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
+
+ gst_element_class_set_details (gstelement_class, &flxdec_details);
+ gst_element_class_add_pad_template (gstelement_class,
+ GST_PAD_TEMPLATE_GET (sink_factory));
+ gst_element_class_add_pad_template (gstelement_class,
+ GST_PAD_TEMPLATE_GET (src_video_factory));
+}
+
static void
gst_flxdec_class_init (GstFlxDecClass *klass)
{
@@ -645,28 +656,24 @@ gst_flxdec_get_property (GObject *object, guint prop_id, GValue *value, GParamSp
}
static gboolean
-plugin_init (GModule *module, GstPlugin *plugin)
+plugin_init (GstPlugin *plugin)
{
- GstElementFactory *factory;
-
if (!gst_library_load ("gstbytestream"))
return FALSE;
- factory = gst_element_factory_new("flxdec", GST_TYPE_FLXDEC, &flxdec_details);
- g_return_val_if_fail(factory != NULL, FALSE);
- gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
-
- gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_factory));
- gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_video_factory));
-
- gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
-
- return TRUE;
+ return gst_element_register (plugin, "flxdec",
+ GST_RANK_PRIMARY, GST_TYPE_FLXDEC);
}
-GstPluginDesc plugin_desc = {
+GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"flxdec",
- plugin_init
-};
+ "FLX video decoder",
+ plugin_init,
+ VERSION,
+ GST_LICENSE,
+ GST_COPYRIGHT,
+ GST_PACKAGE,
+ GST_ORIGIN
+)