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/PcmDsd.hxx | |
parent | ae467aa42e802114eef353fc43d455e775bee7de (diff) | |
download | mpd-fa82264604e6a8e342c932e8fd526017622e3f9f.tar.gz mpd-fa82264604e6a8e342c932e8fd526017622e3f9f.tar.xz mpd-fa82264604e6a8e342c932e8fd526017622e3f9f.zip |
pcm/PcmDsd: remove "lsbfirst" support
Unused. Bit reversing is done in the decoder.
Diffstat (limited to 'src/pcm/PcmDsd.hxx')
-rw-r--r-- | src/pcm/PcmDsd.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm/PcmDsd.hxx b/src/pcm/PcmDsd.hxx index cb3ef1fd6..e3e3a3cb1 100644 --- a/src/pcm/PcmDsd.hxx +++ b/src/pcm/PcmDsd.hxx @@ -41,7 +41,7 @@ public: void Reset(); - ConstBuffer<float> ToFloat(unsigned channels, bool lsbfirst, + ConstBuffer<float> ToFloat(unsigned channels, ConstBuffer<uint8_t> src); }; |