diff options
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/audio/audio.c | 14 | ||||
-rw-r--r-- | gst-libs/gst/idct/idct.c | 13 | ||||
-rw-r--r-- | gst-libs/gst/resample/resample.c | 15 | ||||
-rw-r--r-- | gst-libs/gst/riff/riff.c | 14 |
4 files changed, 56 insertions, 0 deletions
diff --git a/gst-libs/gst/audio/audio.c b/gst-libs/gst/audio/audio.c index 8a8c4af9..a5dfd1ea 100644 --- a/gst-libs/gst/audio/audio.c +++ b/gst-libs/gst/audio/audio.c @@ -150,3 +150,17 @@ gst_audio_is_buffer_framed (GstPad* pad, GstBuffer* buf) else return FALSE; } + +static gboolean +plugin_init (GModule *module, GstPlugin *plugin) +{ + gst_plugin_set_longname (plugin, "Convenience routines for audio plugins"); + return TRUE; +} + +GstPluginDesc plugin_desc = { + GST_VERSION_MAJOR, + GST_VERSION_MINOR, + "gstaudio", + plugin_init +}; diff --git a/gst-libs/gst/idct/idct.c b/gst-libs/gst/idct/idct.c index 6fa63b5b..7b1158fd 100644 --- a/gst-libs/gst/idct/idct.c +++ b/gst-libs/gst/idct/idct.c @@ -126,3 +126,16 @@ void gst_idct_destroy(GstIDCT *idct) g_free(idct); } +static gboolean +plugin_init (GModule *module, GstPlugin *plugin) +{ + gst_plugin_set_longname (plugin, "Accelerated IDCT routines"); + return TRUE; +} + +GstPluginDesc plugin_desc = { + GST_VERSION_MAJOR, + GST_VERSION_MINOR, + "gstidtc", + plugin_init +}; 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 +}; diff --git a/gst-libs/gst/riff/riff.c b/gst-libs/gst/riff/riff.c index 1761bc3b..5c02a162 100644 --- a/gst-libs/gst/riff/riff.c +++ b/gst-libs/gst/riff/riff.c @@ -224,3 +224,17 @@ gchar *gst_riff_id_to_fourcc(gulong id) { return fourcc; } + +static gboolean +plugin_init (GModule *module, GstPlugin *plugin) +{ + gst_plugin_set_longname (plugin, "RIFF convenience routines"); + return TRUE; +} + +GstPluginDesc plugin_desc = { + GST_VERSION_MAJOR, + GST_VERSION_MINOR, + "gstriff", + plugin_init +}; |