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/gstafsrc.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/gstafsrc.c')
-rw-r--r-- | ext/audiofile/gstafsrc.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/ext/audiofile/gstafsrc.c b/ext/audiofile/gstafsrc.c index 751b3cec..d42c6ebc 100644 --- a/ext/audiofile/gstafsrc.c +++ b/ext/audiofile/gstafsrc.c @@ -271,8 +271,8 @@ gst_afsrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpe } } -static gboolean -plugin_init (GModule *module, GstPlugin *plugin) +gboolean +gst_afsrc_plugin_init (GModule *module, GstPlugin *plugin) { GstElementFactory *factory; @@ -295,13 +295,6 @@ plugin_init (GModule *module, GstPlugin *plugin) } -GstPluginDesc plugin_desc = { - GST_VERSION_MAJOR, - GST_VERSION_MINOR, - "afsrc", - plugin_init -}; - /* this is where we open the audiofile */ static gboolean gst_afsrc_open_file (GstAFSrc *src) |