diff options
author | Max Kellermann <max@duempel.org> | 2013-07-29 23:18:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 00:04:16 +0200 |
commit | a9d2dc614496a8eee4269f4032457eb8a7fb6102 (patch) | |
tree | c208413095ee17dafd1a6280f3bf594357015e42 /src/pcm/PcmConvert.hxx | |
parent | 46b9388bb0c867b1c80d9e8f037af56b862f5fd4 (diff) | |
download | mpd-a9d2dc614496a8eee4269f4032457eb8a7fb6102.tar.gz mpd-a9d2dc614496a8eee4269f4032457eb8a7fb6102.tar.xz mpd-a9d2dc614496a8eee4269f4032457eb8a7fb6102.zip |
pcm_resample: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/pcm/PcmConvert.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm/PcmConvert.hxx b/src/pcm/PcmConvert.hxx index 62f67ed8e..1635a90c3 100644 --- a/src/pcm/PcmConvert.hxx +++ b/src/pcm/PcmConvert.hxx @@ -22,9 +22,9 @@ #include "PcmDither.hxx" #include "PcmDsd.hxx" +#include "PcmResample.hxx" extern "C" { -#include "pcm_resample.h" #include "pcm_buffer.h" } @@ -40,7 +40,7 @@ struct audio_format; class PcmConvert { PcmDsd dsd; - struct pcm_resample_state resample; + PcmResampler resampler; PcmDither dither; |