mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 07:28:53 +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");
|
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);
|
GST_TYPE_OGG_MUX);
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ plugin_init (GstPlugin * plugin)
|
||||||
gst_theora_dec_get_type ()))
|
gst_theora_dec_get_type ()))
|
||||||
return FALSE;
|
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 ()))
|
gst_theora_enc_get_type ()))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ GST_DEBUG_CATEGORY (vorbistag_debug);
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
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))
|
GST_TYPE_VORBISENC))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue