diff options
Diffstat (limited to '')
-rw-r--r-- | src/pcm/PcmResample.hxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/pcm/PcmResample.hxx b/src/pcm/PcmResample.hxx index 8a740744a..e839d6ecd 100644 --- a/src/pcm/PcmResample.hxx +++ b/src/pcm/PcmResample.hxx @@ -124,13 +124,7 @@ struct PcmResampler { const int32_t *Resample24(unsigned channels, unsigned src_rate, const int32_t *src_buffer, size_t src_size, unsigned dest_rate, size_t *dest_size_r, - Error &error_r) - { - /* reuse the 32 bit code - the resampler code doesn't care if - the upper 8 bits are actually used */ - return Resample32(channels, src_rate, src_buffer, src_size, - dest_rate, dest_size_r, error_r); - } + Error &error_r); }; bool |