renamed decoder plugin "mp3" to "mad"

A decoder plugin should be named after the library which is used.
This commit is contained in:
Max Kellermann
2009-02-16 19:30:45 +01:00
parent 585f81ece1
commit c5edb53797
3 changed files with 5 additions and 5 deletions

View File

@@ -1208,8 +1208,8 @@ static struct tag *mp3_tag_dup(const char *file)
static const char *const mp3_suffixes[] = { "mp3", "mp2", NULL };
static const char *const mp3_mime_types[] = { "audio/mpeg", NULL };
const struct decoder_plugin mp3Plugin = {
.name = "mp3",
const struct decoder_plugin mad_decoder_plugin = {
.name = "mad",
.init = mp3_plugin_init,
.stream_decode = mp3_decode,
.tag_dup = mp3_tag_dup,