From 69cfac9676760ba8f9a1b8602048bfef0a341444 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 17 Dec 2004 17:09:24 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ gst/ac3parse/gstac3parse.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index efc554c..f269d2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-12-17 Ronald S. Bultje + + * gst/ac3parse/gstac3parse.c: (plugin_init): + Parsers never have ranks. Fixes #159651. + 2004-12-17 Benjamin Otte * gst/playback/gstdecodebin.c: (compare_ranks): diff --git a/gst/ac3parse/gstac3parse.c b/gst/ac3parse/gstac3parse.c index cb68fec..5f1f55a 100644 --- a/gst/ac3parse/gstac3parse.c +++ b/gst/ac3parse/gstac3parse.c @@ -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; } -- 2.7.4