mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
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:
parent
58f23bb616
commit
69cfac9676
2 changed files with 6 additions and 1 deletions
|
@ -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):
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue