diff options
author | Max Kellermann <max@duempel.org> | 2014-08-23 14:40:30 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-23 14:46:34 +0200 |
commit | fa82264604e6a8e342c932e8fd526017622e3f9f (patch) | |
tree | 8e5d802aaef702deec883b5cbfedb7498bd48b68 /src/pcm/PcmConvert.cxx | |
parent | ae467aa42e802114eef353fc43d455e775bee7de (diff) |
pcm/PcmDsd: remove "lsbfirst" support
Unused. Bit reversing is done in the decoder.
Diffstat (limited to 'src/pcm/PcmConvert.cxx')
-rw-r--r-- | src/pcm/PcmConvert.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pcm/PcmConvert.cxx b/src/pcm/PcmConvert.cxx index ba9a691fc..13ec9ac92 100644 --- a/src/pcm/PcmConvert.cxx +++ b/src/pcm/PcmConvert.cxx @@ -124,8 +124,7 @@ PcmConvert::Convert(ConstBuffer<void> buffer, Error &error) if (format.format == SampleFormat::DSD) { auto s = ConstBuffer<uint8_t>::FromVoid(buffer); - auto d = dsd.ToFloat(format.channels, - false, s); + auto d = dsd.ToFloat(format.channels, s); if (d.IsNull()) { error.Set(pcm_domain, "DSD to PCM conversion failed"); |