From bb09550fc663e920ae11ddbee946cdb8cbee2883 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 17 Jun 2006 14:40:51 +0000 Subject: merge patch from Jan Schmidt: modify plugin RANK git-svn-id: file:///home/lennart/svn/public/gst-pulse/trunk@38 bb39ca4e-bce3-0310-b5d4-eea78a553289 --- src/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin.c b/src/plugin.c index a2ade0d..980bab4 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -31,10 +31,10 @@ GST_DEBUG_CATEGORY(polyp_debug); static gboolean plugin_init(GstPlugin* plugin) { - if (!gst_element_register(plugin, "polypsink", GST_RANK_NONE, GST_TYPE_POLYPSINK)) + if (!gst_element_register(plugin, "polypsink", GST_RANK_SECONDARY-1, GST_TYPE_POLYPSINK)) return FALSE; - if (!gst_element_register(plugin, "polypsrc", GST_RANK_NONE, GST_TYPE_POLYPSRC)) + if (!gst_element_register(plugin, "polypsrc", GST_RANK_SECONDARY-1, GST_TYPE_POLYPSRC)) return FALSE; if (!gst_element_register(plugin, "polypmixer", GST_RANK_NONE, GST_TYPE_POLYPMIXER)) -- cgit