summaryrefslogtreecommitdiffstats
path: root/ext/audiofile/gstaftypes.c
diff options
context:
space:
mode:
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;
}