diff options
author | Max Kellermann <max@duempel.org> | 2010-12-22 09:08:12 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-12-22 09:48:48 +0100 |
commit | e3cba18532a24bf20a4174070159eef647057464 (patch) | |
tree | e7a2227f100071e22922ad7094b785c29513ab41 /src/decoder_list.c | |
parent | 9bf7fde49f0883356a4fded05b3fe72db8d3686a (diff) | |
download | mpd-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.c | 2 |
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 }; |