summaryrefslogtreecommitdiffstats
path: root/gst/videofilter/gstvideofilter.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-11-02 22:54:47 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-11-02 22:54:47 +0000
commit673bb31a92125e926ba5587ecd16f0f7b77eff51 (patch)
tree981fa6d0ab26ea22a5e95b116eb937571d051edb /gst/videofilter/gstvideofilter.c
parent0c394ebe6c39fc18aad89396532fa5865610c2d7 (diff)
Bla
Original commit message from CVS: Bla
Diffstat (limited to 'gst/videofilter/gstvideofilter.c')
-rw-r--r--gst/videofilter/gstvideofilter.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/gst/videofilter/gstvideofilter.c b/gst/videofilter/gstvideofilter.c
index a4a3bae2..a7446887 100644
--- a/gst/videofilter/gstvideofilter.c
+++ b/gst/videofilter/gstvideofilter.c
@@ -29,11 +29,8 @@
static GstElementDetails videofilter_details = {
"Video scaler",
"Filter/Video",
- "LGPL",
"Resizes video",
- VERSION,
- "David Schleef <ds@schleef.org>",
- "(C) 2003",
+ "David Schleef <ds@schleef.org>"
};
#endif
@@ -49,7 +46,7 @@ enum {
/* FILL ME */
};
-static void gst_videofilter_base_init (GstVideofilterClass *klass);
+static void gst_videofilter_base_init (GstVideofilterClass *klass);
static void gst_videofilter_class_init (GstVideofilterClass *klass);
static void gst_videofilter_init (GstVideofilter *videofilter);
@@ -88,6 +85,16 @@ gst_videofilter_get_type (void)
static void gst_videofilter_base_init (GstVideofilterClass *klass)
{
klass->formats = g_ptr_array_new();
+
+#if 0
+ GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
+
+ gst_element_class_add_pad_template (element_class,
+ GST_PAD_TEMPLATE_GET (gst_videofilter_sink_template_factory));
+ gst_element_class_add_pad_template (element_class,
+ GST_PAD_TEMPLATE_GET (gst_videofilter_src_template_factory));
+ gst_element_class_set_details (element_class, &videofilter_details);
+#endif
}
static void gst_videofilter_class_init (GstVideofilterClass *klass)
@@ -565,32 +572,25 @@ void gst_videofilter_class_add_format(GstVideofilterClass *videofilterclass,
}
static gboolean
-plugin_init (GModule *module, GstPlugin *plugin)
+plugin_init (GstPlugin *plugin)
{
#if 0
- GstElementFactory *factory;
-
- /* create an elementfactory for the videofilter element */
- factory = gst_element_factory_new("videofilter",GST_TYPE_VIDEOFILTER,
- &videofilter_details);
- g_return_val_if_fail(factory != NULL, FALSE);
-
- /* FIXME: we need to init the class before we can call the
- * pad template factories */
- gst_element_factory_add_pad_template (factory,
- GST_PAD_TEMPLATE_GET (gst_videofilter_sink_template_factory));
- gst_element_factory_add_pad_template (factory,
- GST_PAD_TEMPLATE_GET (gst_videofilter_src_template_factory));
-
- gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
+ return gst_element_register(plugin, "videofilter",
+ GST_RANK_NONE, GST_TYPE_VIDEOFILTER);
#endif
return TRUE;
}
-GstPluginDesc plugin_desc = {
+GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"gstvideofilter",
- plugin_init
-};
+ "Video filter parent class",
+ plugin_init,
+ VERSION,
+ "LGPL",
+ GST_COPYRIGHT,
+ GST_PACKAGE,
+ GST_ORIGIN
+)