diff options
author | Max Kellermann <max@duempel.org> | 2011-10-07 06:38:23 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-10-07 06:38:23 +0200 |
commit | 7ecbb0454f4cbdd10389e06531bc9889cd7fbe5d (patch) | |
tree | 0ef085a023c43e22b847da5a03dfb6c15070843e | |
parent | fa7fa2a55f6ddd90e3eed274b0eb8d1e00abea9b (diff) | |
download | mpd-7ecbb0454f4cbdd10389e06531bc9889cd7fbe5d.tar.gz mpd-7ecbb0454f4cbdd10389e06531bc9889cd7fbe5d.tar.xz mpd-7ecbb0454f4cbdd10389e06531bc9889cd7fbe5d.zip |
decoder/dsdiff: add documentation
-rw-r--r-- | doc/user.xml | 8 | ||||
-rw-r--r-- | src/decoder/dsdiff_decoder_plugin.c | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/doc/user.xml b/doc/user.xml index 4ca91da33..2e654bcca 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -737,6 +737,14 @@ cd mpd-version</programlisting> <title>Decoder plugins</title> <section> + <title><varname>dsdiff</varname></title> + + <para> + Decodes DFF files containing DSDIFF data (e.g. SACD rips). + </para> + </section> + + <section> <title><varname>mikmod</varname></title> <para> diff --git a/src/decoder/dsdiff_decoder_plugin.c b/src/decoder/dsdiff_decoder_plugin.c index d1b12e0a7..2c03cce5b 100644 --- a/src/decoder/dsdiff_decoder_plugin.c +++ b/src/decoder/dsdiff_decoder_plugin.c @@ -17,6 +17,13 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +/* \file + * + * This plugin decodes DSDIFF data (SACD) embedded in DFF files. It + * was modeled after the specification found here: + * http://www.sonicstudio.com/pdf/dsd/DSDIFF_1.5_Spec.pdf + */ + #include "config.h" #include "dsdiff_decoder_plugin.h" #include "decoder_api.h" |