diff options
author | Max Kellermann <max@duempel.org> | 2013-12-28 18:30:13 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-28 18:30:13 +0100 |
commit | 394e2815dbaf0edb8d0f34b6ceab96b58f071ea8 (patch) | |
tree | 8c040efd019c7460ed61dec6091e189bc9ac2e0f /src/pcm/PcmFormat.cxx | |
parent | f3bbe4bb1ffc94d7c06769a31c6e61e54949ed9e (diff) | |
download | mpd-394e2815dbaf0edb8d0f34b6ceab96b58f071ea8.tar.gz mpd-394e2815dbaf0edb8d0f34b6ceab96b58f071ea8.tar.xz mpd-394e2815dbaf0edb8d0f34b6ceab96b58f071ea8.zip |
pcm/PcmDither: inline Dither24To16() and Dither32To16()
Diffstat (limited to '')
-rw-r--r-- | src/pcm/PcmFormat.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pcm/PcmFormat.cxx b/src/pcm/PcmFormat.cxx index a0e0bb2de..92d2cd77b 100644 --- a/src/pcm/PcmFormat.cxx +++ b/src/pcm/PcmFormat.cxx @@ -19,11 +19,12 @@ #include "config.h" #include "PcmFormat.hxx" -#include "PcmDither.hxx" #include "PcmBuffer.hxx" #include "PcmUtils.hxx" #include "Traits.hxx" +#include "PcmDither.cxx" // including the .cxx file to get inlined templates + static void pcm_convert_8_to_16(int16_t *out, const int8_t *in, const int8_t *in_end) { |