mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
Add ranks to the Oggmuxer, Vorbis encoder and Theora encoder
This commit is contained in:
parent
956c9f32a3
commit
705e7750c5
3 changed files with 3 additions and 3 deletions
|
@ -1676,6 +1676,6 @@ gst_ogg_mux_plugin_init (GstPlugin * plugin)
|
|||
{
|
||||
GST_DEBUG_CATEGORY_INIT (gst_ogg_mux_debug, "oggmux", 0, "ogg muxer");
|
||||
|
||||
return gst_element_register (plugin, "oggmux", GST_RANK_NONE,
|
||||
return gst_element_register (plugin, "oggmux", GST_RANK_PRIMARY,
|
||||
GST_TYPE_OGG_MUX);
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ plugin_init (GstPlugin * plugin)
|
|||
gst_theora_dec_get_type ()))
|
||||
return FALSE;
|
||||
|
||||
if (!gst_element_register (plugin, "theoraenc", GST_RANK_NONE,
|
||||
if (!gst_element_register (plugin, "theoraenc", GST_RANK_PRIMARY,
|
||||
gst_theora_enc_get_type ()))
|
||||
return FALSE;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ GST_DEBUG_CATEGORY (vorbistag_debug);
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
if (!gst_element_register (plugin, "vorbisenc", GST_RANK_NONE,
|
||||
if (!gst_element_register (plugin, "vorbisenc", GST_RANK_PRIMARY,
|
||||
GST_TYPE_VORBISENC))
|
||||
return FALSE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue