diff options
author | Max Kellermann <max@musicpd.org> | 2020-01-17 19:11:10 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-01-17 19:11:10 +0100 |
commit | 8db86e282058dedae5837402370a3921b7e677c9 (patch) | |
tree | 457c8462b9808c00b3b23eb74d7a4834d9b20156 /doc | |
parent | c84bae739a29ec27790c5534b7fc777d6f40a02f (diff) |
Revert "pcm/Convert: add option to enable the integer-only dsd2pcm implementation"
This reverts commit c84bae739a29ec27790c5534b7fc777d6f40a02f. A
configuration option is not necessary, because the PcmConvert
constructor knows already whether integer or floating point is needed.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user.rst | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/doc/user.rst b/doc/user.rst index 73559f122..d75975d21 100644 --- a/doc/user.rst +++ b/doc/user.rst @@ -568,26 +568,6 @@ Sometimes, music needs to be resampled before it can be played; for example, CDs Check the :ref:`resampler_plugins` reference for a list of resamplers and how to configure them. -DSD -^^^ - -There are three ways to play back DSD (Direct Stream Digital): - -- natively if your output supports it (ALSA only and requires a sound - card with native DSD support) -- `DSD over PCM <http://dsd-guide.com/dop-open-standard>`_: wrapped - inside fake 24 bit PCM samples (ALSA and OSX only and requires an - external DAC with DoP support) -- for everything else, MPD automatically converts DSD to PCM - -For the last option, the setting ``dsd2pcm_converter`` selects a -conversion method. The default is ``float`` which converts to -floating point samples. For CPUs with a weak floating point unit -(e.g. some ARMs like the one in the Raspberry Pi), it may be faster to -use ``integer``, which is an integer-only implementation of the -conversion algorithm. - - Client Connections ------------------ |