openh264: Use a MARGINAL rank for the encoder and decoder

They work but for now we prefer others until these are extensively tested.
This commit is contained in:
Sebastian Dröge 2014-10-06 16:44:51 +03:00
parent 47abcb9a6b
commit 28e44b3392

View file

@ -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;