mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-07 08:39:54 +00:00
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:
parent
3448e83c73
commit
952b27a140
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue