From bcb8eab616558daa6a95fceb84cdd19cc2df0169 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 22 Dec 2010 18:13:04 +0100 Subject: [PATCH] id3mux: Set to GST_RANK_PRIMARY We want it to take precedence over any other id3 formatter. --- gst/id3tag/gstid3mux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/id3tag/gstid3mux.c b/gst/id3tag/gstid3mux.c index 30995884cb..43ab1a08b4 100644 --- a/gst/id3tag/gstid3mux.c +++ b/gst/id3tag/gstid3mux.c @@ -214,7 +214,8 @@ plugin_init (GstPlugin * plugin) GST_DEBUG_CATEGORY_INIT (gst_id3_mux_debug, "id3mux", 0, "ID3 v1 and v2 tag muxer"); - if (!gst_element_register (plugin, "id3mux", GST_RANK_NONE, GST_TYPE_ID3_MUX)) + if (!gst_element_register (plugin, "id3mux", GST_RANK_PRIMARY, + GST_TYPE_ID3_MUX)) return FALSE; gst_tag_register_musicbrainz_tags ();