summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-10-06 16:44:51 +0300
committerSebastian Dröge <sebastian@centricular.com>2014-10-06 16:44:51 +0300
commit28e44b3392a542c3687549c7215e666ffffa598d (patch)
treeeca0e4e3f107b533a299bff22c1e29b5374e2908
parent47abcb9a6b0be6b11f3e9cfdaadd9444ffc9ace8 (diff)
downloadgstreamer-plugins-bad-28e44b3392a542c3687549c7215e666ffffa598d.tar.gz
openh264: Use a MARGINAL rank for the encoder and decoder
They work but for now we prefer others until these are extensively tested.
-rw-r--r--ext/openh264/gstopenh264plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openh264/gstopenh264plugin.c b/ext/openh264/gstopenh264plugin.c
index c15a9a822..15957d7dd 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;