summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/resample/resample.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-10-31 20:03:29 +0000
committerBenjamin Otte <otte@gnome.org>2003-10-31 20:03:29 +0000
commit7c1ac98ca4b3b52c5c7d7ba005972803fab0b7e9 (patch)
tree5d60bef2e36bc94ce2939dd797fee190e2467f28 /gst-libs/gst/resample/resample.c
parent5bc252df9e2a4ac868a62f3b39327dfa32ecc0ee (diff)
downloadgst-plugins-bad-7c1ac98ca4b3b52c5c7d7ba005972803fab0b7e9.tar.gz
gst-plugins-bad-7c1ac98ca4b3b52c5c7d7ba005972803fab0b7e9.tar.bz2
gst-plugins-bad-7c1ac98ca4b3b52c5c7d7ba005972803fab0b7e9.zip
first bunch of conversions to new plugin_init. Includes libs/gst, gst/id3, sys/oss, ext/gnomevfs, gst/typefind and ex...
Original commit message from CVS: first bunch of conversions to new plugin_init. Includes libs/gst, gst/id3, sys/oss, ext/gnomevfs, gst/typefind and ext/mad. You guessed it, everything Rhythmbox needs ;) fixed BMP typefind and made gnomevfs one plugin instead of two while doing this
Diffstat (limited to 'gst-libs/gst/resample/resample.c')
-rw-r--r--gst-libs/gst/resample/resample.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/gst-libs/gst/resample/resample.c b/gst-libs/gst/resample/resample.c
index 7ced0f54..b298e86d 100644
--- a/gst-libs/gst/resample/resample.c
+++ b/gst-libs/gst/resample/resample.c
@@ -870,16 +870,21 @@ void resample_sinc_ft_float(resample_t * r)
}
static gboolean
-plugin_init (GModule *module, GstPlugin *plugin)
+plugin_init (GstPlugin *plugin)
{
- gst_plugin_set_longname (plugin, "Resampling routines for use in audio plugins");
return TRUE;
}
-GstPluginDesc plugin_desc = {
+GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"gstresample",
- plugin_init
-};
+ "Resampling routines for use in audio plugins",
+ plugin_init,
+ VERSION,
+ GST_LICENSE,
+ GST_COPYRIGHT,
+ GST_PACKAGE,
+ GST_ORIGIN
+);