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  <wingo@pobox.com>

* ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just
id3demux and id3mux now. Fixes #323199.
This commit is contained in:
Andy Wingo 2005-12-05 09:33:32 +00:00
parent 8463b12b32
commit 0f3d1be313
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-12-05 Andy Wingo <wingo@pobox.com>
* ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just
id3demux and id3mux now. Fixes #323199.
2005-12-02 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
* ext/amrnb/Makefile.am:

View file

@ -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;
}