aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-12 16:43:18 +0100
committerMax Kellermann <max@duempel.org>2009-02-12 16:43:18 +0100
commit149233946329ae050142e3fe1b9656d7cd9dd1dc (patch)
tree2a363f9e583b2e3355635a0b379eff89d669779c /src/decoder_list.c
parente56a90f3b343217671327aba2ecdca8709463331 (diff)
wildmidi: new decoder plugin for MIDI files
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r--src/decoder_list.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c
index e7f757e7..71211a0e 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