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 | |
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).
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ext/ivorbis/vorbis.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2005-02-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * ext/ivorbis/vorbis.c: (plugin_init): + Set rank to secondary, we always prefer oggdemux (for obvious + reasons). + +2005-02-24 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * gst/playback/gstplaybasebin.c: (check_queue), (buffer_underrun), (buffer_running), (buffer_overrun), (gen_source_element): Remove probe when no longer blocking for buffering (requested). 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; |