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/PcmConvert.hxx | |
parent | cd1bb2bafa2653e5d4c7c9abf6f464bcdec693c5 (diff) | |
download | mpd-c75cb67c4406648314ce2a15daf8b632374d7913.tar.gz mpd-c75cb67c4406648314ce2a15daf8b632374d7913.tar.xz mpd-c75cb67c4406648314ce2a15daf8b632374d7913.zip |
pcm_buffer: convert to C++
Diffstat (limited to 'src/pcm/PcmConvert.hxx')
-rw-r--r-- | src/pcm/PcmConvert.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/pcm/PcmConvert.hxx b/src/pcm/PcmConvert.hxx index 1635a90c3..f4503f5aa 100644 --- a/src/pcm/PcmConvert.hxx +++ b/src/pcm/PcmConvert.hxx @@ -23,10 +23,7 @@ #include "PcmDither.hxx" #include "PcmDsd.hxx" #include "PcmResample.hxx" - -extern "C" { -#include "pcm_buffer.h" -} +#include "PcmBuffer.hxx" #include <glib.h> @@ -45,10 +42,10 @@ class PcmConvert { PcmDither dither; /** the buffer for converting the sample format */ - struct pcm_buffer format_buffer; + PcmBuffer format_buffer; /** the buffer for converting the channel count */ - struct pcm_buffer channels_buffer; + PcmBuffer channels_buffer; public: PcmConvert(); |