audioparsers: increase ranks to enable auto-plugging

Because we can, and should, have some shakedown testing before having
these make it into -good later on ...
This commit is contained in:
Mark Nauwelaerts 2010-08-16 11:04:37 +02:00
parent 2978216db1
commit b0d62f4182

View file

@ -32,13 +32,13 @@ plugin_init (GstPlugin * plugin)
gboolean ret;
ret = gst_element_register (plugin, "aacparse",
GST_RANK_NONE, GST_TYPE_AACPARSE);
GST_RANK_PRIMARY + 1, GST_TYPE_AACPARSE);
ret &= gst_element_register (plugin, "amrparse",
GST_RANK_PRIMARY + 1, GST_TYPE_AMRPARSE);
ret &= gst_element_register (plugin, "ac3parse",
GST_RANK_MARGINAL, GST_TYPE_AC3_PARSE);
GST_RANK_PRIMARY + 1, GST_TYPE_AC3_PARSE);
ret &= gst_element_register (plugin, "flacparse",
GST_RANK_NONE, GST_TYPE_FLAC_PARSE);
GST_RANK_PRIMARY + 1, GST_TYPE_FLAC_PARSE);
return ret;
}