Move encoders and muxers to GST_RANK_SECONDARY.

This commit is contained in:
Edward Hervey 2009-11-18 17:36:48 +01:00
parent 59bc425174
commit a00fb254aa
2 changed files with 2 additions and 2 deletions

View file

@ -1237,7 +1237,7 @@ gst_ffmpegenc_register (GstPlugin * plugin)
}
}
if (!gst_element_register (plugin, type_name, GST_RANK_NONE, type)) {
if (!gst_element_register (plugin, type_name, GST_RANK_SECONDARY, type)) {
g_free (type_name);
return FALSE;
}

View file

@ -859,7 +859,7 @@ gst_ffmpegmux_register (GstPlugin * plugin)
g_type_add_interface_static (type, GST_TYPE_TAG_SETTER, &tag_setter_info);
}
if (!gst_element_register (plugin, type_name, GST_RANK_NONE, type)) {
if (!gst_element_register (plugin, type_name, GST_RANK_MARGINAL, type)) {
g_free (type_name);
return FALSE;
}