summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/kate/gstkate.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/kate/gstkate.c b/ext/kate/gstkate.c
index 7fecec302..118eb7e6d 100644
--- a/ext/kate/gstkate.c
+++ b/ext/kate/gstkate.c
@@ -80,10 +80,7 @@ plugin_init (GstPlugin * plugin)
"Kate Tiger renderer");
#endif
- /* if we don't build tiger, we'll want to autoplug and convert to text,
- but if we do build tiger, we'll want to use it preferentially as it
- can play non text streams too */
- if (!gst_element_register (plugin, "katedec", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "katedec", GST_RANK_PRIMARY,
GST_TYPE_KATE_DEC))
return FALSE;
@@ -100,7 +97,7 @@ plugin_init (GstPlugin * plugin)
return FALSE;
#ifdef HAVE_TIGER
- if (!gst_element_register (plugin, "tiger", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "tiger", GST_RANK_PRIMARY,
GST_TYPE_KATE_TIGER))
return FALSE;
#endif