ext/mad/gstid3tag.c: Change debug category to 'id3mux'.

Original commit message from CVS:
* ext/mad/gstid3tag.c: (plugin_init):
Change debug category to 'id3mux'.
This commit is contained in:
Tim-Philipp Müller 2006-04-23 09:49:14 +00:00
parent 1ecb957e9b
commit 24be286d0f
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-04-23 Tim-Philipp Müller <tim at centricular dot net>
* ext/mad/gstid3tag.c: (plugin_init):
Change debug category to 'id3mux'.
2006-04-22 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Alexander Lancaster <alexl at users sourceforge net>

View file

@ -1510,13 +1510,12 @@ plugin_init (GstPlugin * plugin)
if (!gst_element_register (plugin, "mad", GST_RANK_SECONDARY,
gst_mad_get_type ())
|| !gst_element_register (plugin, "id3mux", GST_RANK_NONE, /* removed for spider */
|| !gst_element_register (plugin, "id3mux", GST_RANK_NONE,
gst_id3_tag_get_type (GST_ID3_TAG_PARSE_MUX))) {
return FALSE;
}
GST_DEBUG_CATEGORY_INIT (gst_id3_tag_debug, "id3tag", 0,
"id3 tag reader / setter");
GST_DEBUG_CATEGORY_INIT (gst_id3_tag_debug, "id3mux", 0, "id3 tag setter");
return TRUE;
}