pcm_resample: convert to C++

This commit is contained in:
Max Kellermann
2013-07-29 23:18:55 +02:00
parent 46b9388bb0
commit a9d2dc6144
10 changed files with 265 additions and 320 deletions

View File

@@ -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;