summaryrefslogtreecommitdiffstats
path: root/ext/audiofile/gstaf.c
diff options
context:
space:
mode:
authorIain Holmes <iain@prettypeople.org>2003-11-01 14:04:20 +0000
committerIain Holmes <iain@prettypeople.org>2003-11-01 14:04:20 +0000
commit6d5504f6497bac3dfd697b0482b937153fd083ed (patch)
treef826eee69b4da10ed8bb1b62fb3a5b9a91445ac8 /ext/audiofile/gstaf.c
parentc9b2638183671e6446bf0a8a24033327e4662b11 (diff)
downloadgst-plugins-bad-6d5504f6497bac3dfd697b0482b937153fd083ed.tar.gz
gst-plugins-bad-6d5504f6497bac3dfd697b0482b937153fd083ed.tar.bz2
gst-plugins-bad-6d5504f6497bac3dfd697b0482b937153fd083ed.zip
Update all the audiofile stuff
Original commit message from CVS: Update all the audiofile stuff
Diffstat (limited to 'ext/audiofile/gstaf.c')
-rw-r--r--ext/audiofile/gstaf.c23
1 files changed, 14 insertions, 9 deletions
diff --git a/ext/audiofile/gstaf.c b/ext/audiofile/gstaf.c
index c3eb2bcf..691788ea 100644
--- a/ext/audiofile/gstaf.c
+++ b/ext/audiofile/gstaf.c
@@ -22,25 +22,30 @@
#include "gstafsink.h"
#include "gstafparse.h"
-gboolean gst_aftypes_plugin_init (GModule *module, GstPlugin *plugin);
+gboolean gst_aftypes_plugin_init (GstPlugin *plugin);
static gboolean
-plugin_init (GModule *module, GstPlugin *plugin)
+plugin_init (GstPlugin *plugin)
{
if (!gst_library_load ("gstbytestream"))
return FALSE;
- gst_afsink_plugin_init (module, plugin);
- gst_afsrc_plugin_init (module, plugin);
- gst_afparse_plugin_init (module, plugin);
- gst_aftypes_plugin_init (module, plugin);
+ gst_afsink_plugin_init (plugin);
+ gst_afsrc_plugin_init (plugin);
+ gst_afparse_plugin_init (plugin);
+ gst_aftypes_plugin_init (plugin);
return TRUE;
}
-GstPluginDesc plugin_desc = {
+GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"gstaf",
- plugin_init
-};
+ "Audiofile plugin",
+ plugin_init,
+ VERSION,
+ "LGPL",
+ GST_COPYRIGHT,
+ GST_PACKAGE,
+ GST_ORIGIN)