aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-11 20:31:17 +0100
committerMax Kellermann <max@duempel.org>2009-02-11 20:31:17 +0100
commit1136f6fb7a2a6a0a5bfba0dcf99410d1bbf04252 (patch)
treeb2456b7bb8c4d521933f5ae6e96db4b2c2675e09 /src/decoder_list.c
parent82fee1390c072e508309a947b1889e7cc56795a4 (diff)
sidplay: new decoder plugin for playing C64 SID 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 983b794e..96429067 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