aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_list.c
diff options
context:
space:
mode:
authorJurgen Kramer <gtmkramer@xs4all.nl>2012-06-16 13:46:42 +0200
committerMax Kellermann <max@duempel.org>2012-06-27 09:54:24 +0200
commit7235dbadfd113bc3f851dc4f58b74d01d9910af5 (patch)
tree92ea99f8248f23068d60618f74ab1612ec278202 /src/decoder_list.c
parentecec41025f35ea8957dd3b59caeb3f4dfee37821 (diff)
patch to split DSD decoder into separate decoders for DSF en DFF. Move common
functions to new dsdlib. Update user doc.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r--src/decoder_list.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c
index e9e29c69..177b632a 100644
--- a/src/decoder_list.c
+++ b/src/decoder_list.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2012 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -25,6 +25,7 @@
#include "mpd_error.h"
#include "decoder/pcm_decoder_plugin.h"
#include "decoder/dsdiff_decoder_plugin.h"
+#include "decoder/dsf_decoder_plugin.h"
#include <glib.h>
@@ -72,6 +73,7 @@ const struct decoder_plugin *const decoder_plugins[] = {
&audiofile_decoder_plugin,
#endif
&dsdiff_decoder_plugin,
+ &dsf_decoder_plugin,
#ifdef HAVE_FAAD
&faad_decoder_plugin,
#endif