gst/realmedia/rdtmanager.c: Set Rank to NONE so that we don't accidentally try to autoplug the rdtmanager.

Original commit message from CVS:
* gst/realmedia/rdtmanager.c: (gst_rdt_manager_plugin_init):
Set Rank to NONE so that we don't accidentally try to autoplug the
rdtmanager.
This commit is contained in:
Wim Taymans 2008-05-06 10:30:18 +00:00
parent 744d36d359
commit 67f91efd05
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-05-06 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/realmedia/rdtmanager.c: (gst_rdt_manager_plugin_init):
Set Rank to NONE so that we don't accidentally try to autoplug the
rdtmanager.
2008-05-05 Sebastian Dröge <slomo@circular-chaos.org>
* gst/mpegaudioparse/gstmpegaudioparse.c:

2
common

@ -1 +1 @@
Subproject commit f6fc3fa7643c03eb912f4e259d48c99b0e8d0aca
Subproject commit 9b28214399156457fd6b43d0604a47e4bdf19c28

View file

@ -946,5 +946,5 @@ gboolean
gst_rdt_manager_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rdtmanager",
GST_RANK_MARGINAL, GST_TYPE_RDT_MANAGER);
GST_RANK_NONE, GST_TYPE_RDT_MANAGER);
}