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

@@ -26,7 +26,7 @@
#include <string.h>
extern const struct decoder_plugin mp3Plugin;
extern const struct decoder_plugin mad_decoder_plugin;
extern const struct decoder_plugin vorbis_decoder_plugin;
extern const struct decoder_plugin flac_decoder_plugin;
extern const struct decoder_plugin oggflac_decoder_plugin;
@@ -44,7 +44,7 @@ extern const struct decoder_plugin ffmpeg_plugin;
static const struct decoder_plugin *const decoder_plugins[] = {
#ifdef HAVE_MAD
&mp3Plugin,
&mad_decoder_plugin,
#endif
#ifdef HAVE_OGGVORBIS
&vorbis_decoder_plugin,