summaryrefslogtreecommitdiffstats
path: root/ext/esd/gstesd.c
diff options
context:
space:
mode:
authorIain Holmes <iain@prettypeople.org>2003-11-01 15:28:33 +0000
committerIain Holmes <iain@prettypeople.org>2003-11-01 15:28:33 +0000
commit4865820a8f7168ebb72a6ab8f6b30a6c714883e0 (patch)
tree6de3d7147485f802d8dbce756c38a8ba648e833f /ext/esd/gstesd.c
parentadc599bb661aa932ba6eb36cbaa5911f13095c67 (diff)
ESD Updated
Original commit message from CVS: ESD Updated
Diffstat (limited to 'ext/esd/gstesd.c')
-rw-r--r--ext/esd/gstesd.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/ext/esd/gstesd.c b/ext/esd/gstesd.c
index 24a9842a..cf62bfa8 100644
--- a/ext/esd/gstesd.c
+++ b/ext/esd/gstesd.c
@@ -26,7 +26,7 @@
static gboolean
-plugin_init (GModule *module, GstPlugin *plugin)
+plugin_init (GstPlugin *plugin)
{
gboolean ret;
@@ -41,10 +41,15 @@ plugin_init (GModule *module, GstPlugin *plugin)
return TRUE;
}
-GstPluginDesc plugin_desc = {
+GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"esdsink",
- plugin_init
-};
+ "ESD Element Plugins",
+ plugin_init,
+ VERSION,
+ "LGPL",
+ GST_COPYRIGHT,
+ GST_PACKAGE,
+ GST_ORIGIN)