Add ranks to the Oggmuxer, Vorbis encoder and Theora encoder

This commit is contained in:
Christian Schaller 2009-05-12 12:17:55 +01:00
parent 956c9f32a3
commit 705e7750c5
3 changed files with 3 additions and 3 deletions

View file

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

View file

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

View file

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