diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-05-26 21:59:21 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-05-26 21:59:21 +0000 |
commit | d18d4fd5a1986d59af029a482e094a3707828438 (patch) | |
tree | beacf1328f92d1827aed3be348f607dca5d0839d /ext/audiofile/gstafsink.c | |
parent | cff445b737c736d65b85d861dbe9baeb28c5ae50 (diff) | |
download | gst-plugins-bad-d18d4fd5a1986d59af029a482e094a3707828438.tar.gz gst-plugins-bad-d18d4fd5a1986d59af029a482e094a3707828438.tar.bz2 gst-plugins-bad-d18d4fd5a1986d59af029a482e094a3707828438.zip |
- Changed plugins for new APIs
Original commit message from CVS:
- Changed plugins for new APIs
- modularized audiofile.
- added seeking, query and convert functions for mad, mpeg2dec,
avidemux, mpegdemux, mpegparse
- sync updates to oss. removed the ossclock for now
Diffstat (limited to 'ext/audiofile/gstafsink.c')
-rw-r--r-- | ext/audiofile/gstafsink.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c index 77e1637d..7ea8d3c8 100644 --- a/ext/audiofile/gstafsink.c +++ b/ext/audiofile/gstafsink.c @@ -260,8 +260,8 @@ gst_afsink_get_property (GObject *object, guint prop_id, GValue *value, GParamSp } } -static gboolean -plugin_init (GModule *module, GstPlugin *plugin) +gboolean +gst_afsink_plugin_init (GModule *module, GstPlugin *plugin) { GstElementFactory *factory; @@ -276,14 +276,6 @@ plugin_init (GModule *module, GstPlugin *plugin) return TRUE; } - -GstPluginDesc plugin_desc = { - GST_VERSION_MAJOR, - GST_VERSION_MINOR, - "afsink", - plugin_init -}; - /* this is where we open the audiofile */ static gboolean gst_afsink_open_file (GstAFSink *sink) |