mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
gst/autoplug/gstspider.c: don't set a rank. We don't want to autoplug by inserting spiders.
Original commit message from CVS: * gst/autoplug/gstspider.c: (plugin_init): don't set a rank. We don't want to autoplug by inserting spiders.
This commit is contained in:
parent
e63b35bbd1
commit
ef46525f83
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-08-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||
|
||||
* gst/autoplug/gstspider.c: (plugin_init):
|
||||
don't set a rank. We don't want to autoplug by inserting spiders.
|
||||
|
||||
2004-08-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||
|
||||
* gst/autoplug/gstspider.c: (gst_spider_class_init),
|
||||
|
|
|
@ -749,8 +749,7 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_DEBUG_CATEGORY_INIT (gst_spider_debug, "spider", 0,
|
||||
"spider autoplugging element");
|
||||
|
||||
if (!gst_element_register (plugin, "spider", GST_RANK_SECONDARY,
|
||||
GST_TYPE_SPIDER))
|
||||
if (!gst_element_register (plugin, "spider", GST_RANK_NONE, GST_TYPE_SPIDER))
|
||||
return FALSE;
|
||||
if (!gst_element_register (plugin, "spideridentity", GST_RANK_NONE,
|
||||
GST_TYPE_SPIDER_IDENTITY))
|
||||
|
|
Loading…
Reference in a new issue