diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-24 20:55:44 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-24 20:55:44 +0000 |
commit | 0cc78c5ef82a4d0ba9d9560e8afff292d99e1088 (patch) | |
tree | 843ffa7c8e1183470d93b8e9b5892d9f3898356d /gst-libs/gst/resample/resample.c | |
parent | 1ca4ae60d2fd9190f24c57f311d84f2e56baaafa (diff) | |
download | gst-plugins-bad-0cc78c5ef82a4d0ba9d9560e8afff292d99e1088.tar.gz gst-plugins-bad-0cc78c5ef82a4d0ba9d9560e8afff292d99e1088.tar.bz2 gst-plugins-bad-0cc78c5ef82a4d0ba9d9560e8afff292d99e1088.zip |
added plugin_desc structures to libs, which makes their locations cached in the registry. this speeds plugin loading ...
Original commit message from CVS:
* added plugin_desc structures to libs, which makes their locations cached in the registry. this
speeds plugin loading considerably, especially on uninstalled versions.
* put the lib path before all others, for speed reasons.
* some fixes to adder's caps.
* added linefeeds (\n) to GST_DEBUG strings to match GST_INFO behavior. this is more sane. all
code will need to be converted. i think some perl can do this.
Diffstat (limited to 'gst-libs/gst/resample/resample.c')
-rw-r--r-- | gst-libs/gst/resample/resample.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gst-libs/gst/resample/resample.c b/gst-libs/gst/resample/resample.c index 286cb84b..b78ceb49 100644 --- a/gst-libs/gst/resample/resample.c +++ b/gst-libs/gst/resample/resample.c @@ -24,6 +24,8 @@ #include <stdlib.h> #include <resample.h> +#include <gst/gstplugin.h> +#include <gst/gstversion.h> inline double sinc(double x) { @@ -528,3 +530,16 @@ static void resample_sinc_ft(resample_t * r) } } +static gboolean +plugin_init (GModule *module, GstPlugin *plugin) +{ + gst_plugin_set_longname (plugin, "Resampling routines for use in audio plugins"); + return TRUE; +} + +GstPluginDesc plugin_desc = { + GST_VERSION_MAJOR, + GST_VERSION_MINOR, + "gstresample", + plugin_init +}; |