gst/ac3parse/gstac3parse.c: Parsers never have ranks. Fixes #159651.

Original commit message from CVS:
* gst/ac3parse/gstac3parse.c: (plugin_init):
Parsers never have ranks. Fixes #159651.
This commit is contained in:
Ronald S. Bultje 2004-12-17 17:09:24 +00:00
parent 58f23bb616
commit 69cfac9676
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-12-17 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/ac3parse/gstac3parse.c: (plugin_init):
Parsers never have ranks. Fixes #159651.
2004-12-17 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst/playback/gstdecodebin.c: (compare_ranks):

View file

@ -436,7 +436,7 @@ gst_ac3parse_change_state (GstElement * element)
static gboolean
plugin_init (GstPlugin * plugin)
{
if (!gst_element_register (plugin, "ac3parse", GST_RANK_SECONDARY,
if (!gst_element_register (plugin, "ac3parse", GST_RANK_NONE,
GST_TYPE_AC3PARSE)) {
return FALSE;
}