diff options
Diffstat (limited to 'gst-libs/gst/riff/riff.c')
-rw-r--r-- | gst-libs/gst/riff/riff.c | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/gst-libs/gst/riff/riff.c b/gst-libs/gst/riff/riff.c index 2e77c01a..bb29150c 100644 --- a/gst-libs/gst/riff/riff.c +++ b/gst-libs/gst/riff/riff.c @@ -17,19 +17,27 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif #include <riff.h> static gboolean -plugin_init (GModule *module, GstPlugin *plugin) +plugin_init (GstPlugin *plugin) { - gst_plugin_set_longname (plugin, "RIFF convenience routines"); return TRUE; } -GstPluginDesc plugin_desc = { +GST_PLUGIN_DEFINE ( GST_VERSION_MAJOR, GST_VERSION_MINOR, "gstriff", - plugin_init -}; + "RIFF convenience routines", + plugin_init, + VERSION, + GST_LICENSE, + GST_COPYRIGHT, + GST_PACKAGE, + GST_ORIGIN +) |