diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-02-24 10:55:51 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-02-24 10:55:51 +0000 |
commit | 5e49781cde9b9e97a8e2a15b3b711cb451bbc850 (patch) | |
tree | 1ab0e0c4a636de3b91834029ea10711e15ac599e /ext/ivorbis | |
parent | d97eb4ea605e12416ebb8a016b502048252bd610 (diff) | |
download | gst-plugins-bad-5e49781cde9b9e97a8e2a15b3b711cb451bbc850.tar.gz gst-plugins-bad-5e49781cde9b9e97a8e2a15b3b711cb451bbc850.tar.bz2 gst-plugins-bad-5e49781cde9b9e97a8e2a15b3b711cb451bbc850.zip |
ext/ivorbis/vorbis.c: Set rank to secondary, we always prefer oggdemux (for obvious reasons).
Original commit message from CVS:
* ext/ivorbis/vorbis.c: (plugin_init):
Set rank to secondary, we always prefer oggdemux (for obvious
reasons).
Diffstat (limited to 'ext/ivorbis')
-rw-r--r-- | ext/ivorbis/vorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ivorbis/vorbis.c b/ext/ivorbis/vorbis.c index 3394a77a..b611bbbd 100644 --- a/ext/ivorbis/vorbis.c +++ b/ext/ivorbis/vorbis.c @@ -33,7 +33,7 @@ plugin_init (GstPlugin * plugin) if (!gst_library_load ("gstbytestream")) return FALSE; - if (!gst_element_register (plugin, "tremor", GST_RANK_PRIMARY, + if (!gst_element_register (plugin, "tremor", GST_RANK_SECONDARY, ivorbisfile_get_type ())) return FALSE; |