aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorViliam Mateicka <viliam.mateicka@gmail.com>2008-12-28 17:11:18 +0100
committerViliam Mateicka <viliam.mateicka@gmail.com>2008-12-28 17:11:18 +0100
commitd838a1ad24a9eaac44367e34506373b4b71e4ff0 (patch)
tree9f94024a290c0e96f53b3b83095f3303a64abadd /src/decoder_list.c
parent4654bb462814f64f79302477c59a85317256addc (diff)
downloadmpd-d838a1ad24a9eaac44367e34506373b4b71e4ff0.tar.gz
mpd-d838a1ad24a9eaac44367e34506373b4b71e4ff0.tar.xz
mpd-d838a1ad24a9eaac44367e34506373b4b71e4ff0.zip
decoder: new plugin using modplug library
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 c70d6334c..6fe434e03 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -31,6 +31,7 @@ extern const struct decoder_plugin mp4_plugin;
extern const struct decoder_plugin aacPlugin;
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 modPlugin;
extern const struct decoder_plugin ffmpeg_plugin;
@@ -62,6 +63,9 @@ static const struct decoder_plugin *const decoder_plugins[] = {
#ifdef HAVE_WAVPACK
&wavpack_plugin,
#endif
+#ifdef HAVE_MODPLUG
+ &modplug_plugin,
+#endif
#ifdef HAVE_MIKMOD
&modPlugin,
#endif