aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm/PcmConvert.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-07-29 23:18:55 +0200
committerMax Kellermann <max@duempel.org>2013-07-30 00:04:16 +0200
commita9d2dc614496a8eee4269f4032457eb8a7fb6102 (patch)
treec208413095ee17dafd1a6280f3bf594357015e42 /src/pcm/PcmConvert.hxx
parent46b9388bb0c867b1c80d9e8f037af56b862f5fd4 (diff)
downloadmpd-a9d2dc614496a8eee4269f4032457eb8a7fb6102.tar.gz
mpd-a9d2dc614496a8eee4269f4032457eb8a7fb6102.tar.xz
mpd-a9d2dc614496a8eee4269f4032457eb8a7fb6102.zip
pcm_resample: convert to C++
Diffstat (limited to 'src/pcm/PcmConvert.hxx')
-rw-r--r--src/pcm/PcmConvert.hxx4
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;