diff options
author | David Schleef <ds@schleef.org> | 2003-12-18 09:49:50 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-12-18 09:49:50 +0000 |
commit | ef3ed344af7d0eb330f68c85d31acfa9471d1573 (patch) | |
tree | 012d45187cfa98f972073142ce341190252e17f7 /gst-libs/gst/riff/riff.c | |
parent | 70a4a0e00218745b2bf7ad0b145fe9a967981cb4 (diff) | |
download | gst-plugins-bad-ef3ed344af7d0eb330f68c85d31acfa9471d1573.tar.gz gst-plugins-bad-ef3ed344af7d0eb330f68c85d31acfa9471d1573.tar.bz2 gst-plugins-bad-ef3ed344af7d0eb330f68c85d31acfa9471d1573.zip |
Merge HEAD from CAPS-ROOT to CAPS-MERGE-3
Original commit message from CVS:
Merge HEAD from CAPS-ROOT to CAPS-MERGE-3
Diffstat (limited to 'gst-libs/gst/riff/riff.c')
-rw-r--r-- | gst-libs/gst/riff/riff.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gst-libs/gst/riff/riff.c b/gst-libs/gst/riff/riff.c index bb29150c..9c0ce2ae 100644 --- a/gst-libs/gst/riff/riff.c +++ b/gst-libs/gst/riff/riff.c @@ -1,5 +1,7 @@ -/* GStreamer - * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu> +/* GStreamer RIFF I/O + * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net> + * + * riff.c: plugin registering * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -18,26 +20,25 @@ */ #ifdef HAVE_CONFIG_H -# include "config.h" +#include "config.h" #endif -#include <riff.h> +#include <gst/gst.h> static gboolean plugin_init (GstPlugin *plugin) { - return TRUE; + return gst_library_load ("gstbytestream"); } GST_PLUGIN_DEFINE ( GST_VERSION_MAJOR, GST_VERSION_MINOR, - "gstriff", - "RIFF convenience routines", + "riff", + "RIFF I/O functions", plugin_init, VERSION, GST_LICENSE, - GST_COPYRIGHT, GST_PACKAGE, GST_ORIGIN ) |