diff options
author | Max Kellermann <max@duempel.org> | 2010-04-20 21:16:39 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-04-20 21:16:39 +0200 |
commit | cf3ada3d04c75252739a98b7d3a6c1de1a4bff5a (patch) | |
tree | 5162e62e323f520e8bbe0accf8701acc010fd75f /src/decoder_list.c | |
parent | 7df94b1718d5b60b26a891ec2ca2cec4f5938d04 (diff) | |
parent | 9d55b16998b6336bfdd6ea0ae3ac31f8685521f6 (diff) | |
download | mpd-cf3ada3d04c75252739a98b7d3a6c1de1a4bff5a.tar.gz mpd-cf3ada3d04c75252739a98b7d3a6c1de1a4bff5a.tar.xz mpd-cf3ada3d04c75252739a98b7d3a6c1de1a4bff5a.zip |
Merge branch 'master' of git://github.com/mcfiredrill/mpd
Diffstat (limited to '')
-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 6c8db8fb5..f91d635dc 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -44,6 +44,7 @@ extern const struct decoder_plugin sidplay_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; +extern const struct decoder_plugin gme_decoder_plugin; const struct decoder_plugin *const decoder_plugins[] = { #ifdef HAVE_MAD @@ -97,6 +98,9 @@ const struct decoder_plugin *const decoder_plugins[] = { #ifdef HAVE_FFMPEG &ffmpeg_decoder_plugin, #endif +#ifdef HAVE_GME + &gme_decoder_plugin, +#endif NULL }; |