aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-12-22 09:08:12 +0100
committerMax Kellermann <max@duempel.org>2010-12-22 09:48:48 +0100
commite3cba18532a24bf20a4174070159eef647057464 (patch)
treee7a2227f100071e22922ad7094b785c29513ab41 /src/decoder_list.c
parent9bf7fde49f0883356a4fded05b3fe72db8d3686a (diff)
downloadmpd-e3cba18532a24bf20a4174070159eef647057464.tar.gz
mpd-e3cba18532a24bf20a4174070159eef647057464.tar.xz
mpd-e3cba18532a24bf20a4174070159eef647057464.zip
decoder: new "pcm" decoder plugin
Just there to support the "cdio_paranoia" input plugin.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r--src/decoder_list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c
index d76050023..4d8562be6 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -23,6 +23,7 @@
#include "utils.h"
#include "conf.h"
#include "mpd_error.h"
+#include "decoder/pcm_decoder_plugin.h"
#include <glib.h>
@@ -102,6 +103,7 @@ const struct decoder_plugin *const decoder_plugins[] = {
#ifdef HAVE_GME
&gme_decoder_plugin,
#endif
+ &pcm_decoder_plugin,
NULL
};