audioparsers: increase ranks to enable auto-plugging
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Mon, 16 Aug 2010 09:04:37 +0000 (11:04 +0200)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 8 Apr 2011 17:07:07 +0000 (18:07 +0100)
Because we can, and should, have some shakedown testing before having
these make it into -good later on ...

gst/audioparsers/plugin.c

index 7da4fc1f0657ec5104022c992ef2d4cfb1e3931d..d252e0336d8eefaf35b868ca54783f81f5bad552 100644 (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;
 }