From 76ecfc347fedc1115d106f47328e6ee7c27718e0 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Fri, 12 Dec 2003 03:08:17 +0000 Subject: [PATCH] fix vorbis playback (by using a hack, but for now...) Original commit message from CVS: fix vorbis playback (by using a hack, but for now...) --- ext/vorbis/vorbis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/vorbis/vorbis.c b/ext/vorbis/vorbis.c index 0d183c233a..42205d6ec7 100644 --- a/ext/vorbis/vorbis.c +++ b/ext/vorbis/vorbis.c @@ -35,7 +35,7 @@ plugin_init (GstPlugin *plugin) if (!gst_element_register (plugin, "vorbisenc", GST_RANK_NONE, GST_TYPE_VORBISENC)) return FALSE; - if (!gst_element_register (plugin, "vorbisfile", GST_RANK_PRIMARY, vorbisfile_get_type ())) + if (!gst_element_register (plugin, "vorbisfile", GST_RANK_PRIMARY + 1, vorbisfile_get_type ())) return FALSE; return TRUE;