diff options
author | Max Kellermann <max@duempel.org> | 2013-07-29 08:10:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 08:31:02 +0200 |
commit | c75cb67c4406648314ce2a15daf8b632374d7913 (patch) | |
tree | 5e27b73f2c90e878631bfac5b60070505b094717 /src/pcm/PcmResample.cxx | |
parent | cd1bb2bafa2653e5d4c7c9abf6f464bcdec693c5 (diff) | |
download | mpd-c75cb67c4406648314ce2a15daf8b632374d7913.tar.gz mpd-c75cb67c4406648314ce2a15daf8b632374d7913.tar.xz mpd-c75cb67c4406648314ce2a15daf8b632374d7913.zip |
pcm_buffer: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/pcm/PcmResample.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pcm/PcmResample.cxx b/src/pcm/PcmResample.cxx index 60265380e..423e3d442 100644 --- a/src/pcm/PcmResample.cxx +++ b/src/pcm/PcmResample.cxx @@ -61,9 +61,7 @@ PcmResampler::PcmResampler() #ifdef HAVE_LIBSAMPLERATE if (pcm_resample_lsr_enabled()) pcm_resample_lsr_init(this); - else #endif - pcm_resample_fallback_init(this); } PcmResampler::~PcmResampler() @@ -71,9 +69,7 @@ PcmResampler::~PcmResampler() #ifdef HAVE_LIBSAMPLERATE if (pcm_resample_lsr_enabled()) pcm_resample_lsr_deinit(this); - else #endif - pcm_resample_fallback_deinit(this); } void |