diff options
author | Max Kellermann <max@duempel.org> | 2009-02-12 16:43:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-12 16:43:18 +0100 |
commit | 149233946329ae050142e3fe1b9656d7cd9dd1dc (patch) | |
tree | 2a363f9e583b2e3355635a0b379eff89d669779c /src/decoder_list.c | |
parent | e56a90f3b343217671327aba2ecdca8709463331 (diff) | |
download | mpd-149233946329ae050142e3fe1b9656d7cd9dd1dc.tar.gz mpd-149233946329ae050142e3fe1b9656d7cd9dd1dc.tar.xz mpd-149233946329ae050142e3fe1b9656d7cd9dd1dc.zip |
wildmidi: new decoder plugin for MIDI files
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r-- | src/decoder_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index e7f757e71..71211a0ea 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -36,6 +36,7 @@ extern const struct decoder_plugin modplug_plugin; extern const struct decoder_plugin mikmod_decoder_plugin; extern const struct decoder_plugin sidplay_decoder_plugin; extern const struct decoder_plugin fluidsynth_decoder_plugin; +extern const struct decoder_plugin wildmidi_decoder_plugin; extern const struct decoder_plugin ffmpeg_plugin; static const struct decoder_plugin *const decoder_plugins[] = { @@ -78,6 +79,9 @@ static const struct decoder_plugin *const decoder_plugins[] = { #ifdef ENABLE_FLUIDSYNTH &fluidsynth_decoder_plugin, #endif +#ifdef ENABLE_WILDMIDI + &wildmidi_decoder_plugin, +#endif #ifdef HAVE_FFMPEG &ffmpeg_plugin, #endif |