diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-04-04 21:31:55 -0700 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-04-06 11:03:45 +0200 |
commit | 0b36e7d94434e7ecaa43c3cf9950746b2f0ed125 (patch) | |
tree | 9331820d45867994144546266dfc1ac366f0997d /src/decoder_list.c | |
parent | 1acfd2423f96e3c7473131cde89933e38588d395 (diff) | |
download | mpd-0b36e7d94434e7ecaa43c3cf9950746b2f0ed125.tar.gz mpd-0b36e7d94434e7ecaa43c3cf9950746b2f0ed125.tar.xz mpd-0b36e7d94434e7ecaa43c3cf9950746b2f0ed125.zip |
decoder: prefer wildmidi over fluidsynth
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r-- | src/decoder_list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index 8d6e6c2fb..a42585e34 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -39,8 +39,8 @@ extern const struct decoder_plugin wavpack_decoder_plugin; extern const struct decoder_plugin modplug_decoder_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 fluidsynth_decoder_plugin; extern const struct decoder_plugin ffmpeg_decoder_plugin; static const struct decoder_plugin *const decoder_plugins[] = { @@ -80,12 +80,12 @@ static const struct decoder_plugin *const decoder_plugins[] = { #ifdef ENABLE_SIDPLAY &sidplay_decoder_plugin, #endif -#ifdef ENABLE_FLUIDSYNTH - &fluidsynth_decoder_plugin, -#endif #ifdef ENABLE_WILDMIDI &wildmidi_decoder_plugin, #endif +#ifdef ENABLE_FLUIDSYNTH + &fluidsynth_decoder_plugin, +#endif #ifdef HAVE_FFMPEG &ffmpeg_decoder_plugin, #endif |