summaryrefslogtreecommitdiffstats
path: root/ext/audiofile/gstaftypes.c
diff options
context:
space:
mode:
authorIain Holmes <iain@prettypeople.org>2003-11-01 14:04:20 +0000
committerIain Holmes <iain@prettypeople.org>2003-11-01 14:04:20 +0000
commit6d5504f6497bac3dfd697b0482b937153fd083ed (patch)
treef826eee69b4da10ed8bb1b62fb3a5b9a91445ac8 /ext/audiofile/gstaftypes.c
parentc9b2638183671e6446bf0a8a24033327e4662b11 (diff)
downloadgst-plugins-bad-6d5504f6497bac3dfd697b0482b937153fd083ed.tar.gz
gst-plugins-bad-6d5504f6497bac3dfd697b0482b937153fd083ed.tar.bz2
gst-plugins-bad-6d5504f6497bac3dfd697b0482b937153fd083ed.zip
Update all the audiofile stuff
Original commit message from CVS: Update all the audiofile stuff
Diffstat (limited to 'ext/audiofile/gstaftypes.c')
-rw-r--r--ext/audiofile/gstaftypes.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/audiofile/gstaftypes.c b/ext/audiofile/gstaftypes.c
index befe141b..09e68d32 100644
--- a/ext/audiofile/gstaftypes.c
+++ b/ext/audiofile/gstaftypes.c
@@ -106,13 +106,14 @@ gst_aftypes_type_find(GstTypeFind *tf, gpointer private)
}
gboolean
-gst_aftypes_plugin_init (GModule *module, GstPlugin *plugin)
+gst_aftypes_plugin_init (GstPlugin *plugin)
{
static gchar * af_exts[] = { "aiff", "aif", "aifc", "wav", "au", "snd", NULL };
- gst_type_find_factory_register (plugin, "audio/x-mod",
- GST_ELEMENT_RANK_MARGINAL, gst_aftypes_type_find, af_exts,
- GST_CAPS_ANY, NULL);
+ gst_type_find_register (plugin, "audio/x-mod",
+ GST_RANK_MARGINAL,
+ gst_aftypes_type_find, af_exts,
+ GST_CAPS_ANY, NULL);
return TRUE;
}