mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
Move encoders and muxers to GST_RANK_SECONDARY.
This commit is contained in:
parent
59bc425174
commit
a00fb254aa
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue