From 28e44b3392a542c3687549c7215e666ffffa598d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 6 Oct 2014 16:44:51 +0300 Subject: [PATCH] openh264: Use a MARGINAL rank for the encoder and decoder They work but for now we prefer others until these are extensively tested. --- ext/openh264/gstopenh264plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/openh264/gstopenh264plugin.c b/ext/openh264/gstopenh264plugin.c index c15a9a8223..15957d7dda 100644 --- a/ext/openh264/gstopenh264plugin.c +++ b/ext/openh264/gstopenh264plugin.c @@ -38,9 +38,9 @@ static gboolean plugin_init (GstPlugin * plugin) { - gst_element_register (plugin, "openh264dec", GST_RANK_NONE, + gst_element_register (plugin, "openh264dec", GST_RANK_MARGINAL, GST_TYPE_OPENH264DEC); - gst_element_register (plugin, "openh264enc", GST_RANK_NONE, + gst_element_register (plugin, "openh264enc", GST_RANK_MARGINAL, GST_TYPE_OPENH264ENC); return TRUE;