From b0d62f41827a5957e6146838b7b35dbe907b370a Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Mon, 16 Aug 2010 11:04:37 +0200 Subject: [PATCH] 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 ... --- gst/audioparsers/plugin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/audioparsers/plugin.c b/gst/audioparsers/plugin.c index 7da4fc1f06..d252e0336d 100644 --- a/gst/audioparsers/plugin.c +++ b/gst/audioparsers/plugin.c @@ -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; }