diff options
author | Max Kellermann <max@duempel.org> | 2009-02-11 20:31:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-11 20:31:17 +0100 |
commit | 1136f6fb7a2a6a0a5bfba0dcf99410d1bbf04252 (patch) | |
tree | b2456b7bb8c4d521933f5ae6e96db4b2c2675e09 /src/decoder_list.c | |
parent | 82fee1390c072e508309a947b1889e7cc56795a4 (diff) | |
download | mpd-1136f6fb7a2a6a0a5bfba0dcf99410d1bbf04252.tar.gz mpd-1136f6fb7a2a6a0a5bfba0dcf99410d1bbf04252.tar.xz mpd-1136f6fb7a2a6a0a5bfba0dcf99410d1bbf04252.zip |
sidplay: new decoder plugin for playing C64 SID files
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 983b794ee..96429067c 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -34,6 +34,7 @@ extern const struct decoder_plugin mpcPlugin; extern const struct decoder_plugin wavpack_plugin; 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 ffmpeg_plugin; static const struct decoder_plugin *const decoder_plugins[] = { @@ -70,6 +71,9 @@ static const struct decoder_plugin *const decoder_plugins[] = { #ifdef HAVE_MIKMOD &mikmod_decoder_plugin, #endif +#ifdef ENABLE_SIDPLAY + &sidplay_decoder_plugin, +#endif #ifdef HAVE_FFMPEG &ffmpeg_plugin, #endif |