From 0f3d1be313735485c50c09438845c59881924399 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 5 Dec 2005 09:33:32 +0000 Subject: [PATCH] ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just id3demux and id3mux now. Fixes #323199. Original commit message from CVS: 2005-12-05 Andy Wingo * ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just id3demux and id3mux now. Fixes #323199. --- ChangeLog | 5 +++++ ext/mad/gstid3tag.c | 5 +---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 409187cff1..3b1687a0b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-05 Andy Wingo + + * ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just + id3demux and id3mux now. Fixes #323199. + 2005-12-02 Thomas Vander Stichele * ext/amrnb/Makefile.am: diff --git a/ext/mad/gstid3tag.c b/ext/mad/gstid3tag.c index 18885b466d..644472569a 100644 --- a/ext/mad/gstid3tag.c +++ b/ext/mad/gstid3tag.c @@ -1428,10 +1428,7 @@ plugin_init (GstPlugin * plugin) || !gst_element_register (plugin, "id3demux", GST_RANK_PRIMARY, gst_id3_tag_get_type (GST_ID3_TAG_PARSE_DEMUX)) || !gst_element_register (plugin, "id3mux", GST_RANK_NONE, /* removed for spider */ - gst_id3_tag_get_type (GST_ID3_TAG_PARSE_MUX)) - /* FIXME 0.9: remove this element */ - || !gst_element_register (plugin, "id3tag", GST_RANK_NONE, - gst_id3_tag_get_type (GST_ID3_TAG_PARSE_ANY))) { + gst_id3_tag_get_type (GST_ID3_TAG_PARSE_MUX))) { return FALSE; }