|
|
|
@ -8,90 +8,90 @@ |
|
|
|
|
template <class TResamplingReader> |
|
|
|
|
class AudioPlayResmp : public AudioStream |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
AudioPlayResmp(): AudioStream(0, NULL), reader(nullptr) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
public: |
|
|
|
|
AudioPlayResmp(): AudioStream(0, NULL), reader(nullptr) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
virtual ~AudioPlayResmp() { |
|
|
|
|
} |
|
|
|
|
virtual ~AudioPlayResmp() { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void begin(void) |
|
|
|
|
{ |
|
|
|
|
reader->begin(); |
|
|
|
|
} |
|
|
|
|
void begin(void) |
|
|
|
|
{ |
|
|
|
|
reader->begin(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playRaw(const char *filename, uint16_t numChannels) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->play(filename, false, numChannels); |
|
|
|
|
} |
|
|
|
|
bool playRaw(const char *filename, uint16_t numChannels) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->play(filename, false, numChannels); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playWav(const char *filename) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->play(filename, true, 0); |
|
|
|
|
} |
|
|
|
|
bool playWav(const char *filename) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->play(filename, true, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playRaw(int16_t *data, uint32_t numSamples, uint16_t numChannels) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->playRaw(data, numSamples, numChannels); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playRaw(int16_t *data, uint32_t numSamples, uint16_t numChannels) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->playRaw(data, numSamples, numChannels); |
|
|
|
|
} |
|
|
|
|
bool playRaw(const unsigned int *data, uint32_t numSamples, uint16_t numChannels)
|
|
|
|
|
{ |
|
|
|
|
return playRaw((int16_t *) data, numSamples, numChannels); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playRaw(const unsigned int *data, uint32_t numSamples, uint16_t numChannels)
|
|
|
|
|
{ |
|
|
|
|
return playRaw((int16_t *) data, numSamples, numChannels); |
|
|
|
|
} |
|
|
|
|
bool playWav(int16_t *data, uint32_t fileSize) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->playWav(data, fileSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playWav(int16_t *data, uint32_t fileSize) |
|
|
|
|
{ |
|
|
|
|
stop(); |
|
|
|
|
return reader->playWav(data, fileSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool playWav(const unsigned int *data, uint32_t fileSize) { |
|
|
|
|
return playWav((int16_t *) data, fileSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setPlaybackRate(float f) { |
|
|
|
|
reader->setPlaybackRate(f); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setLoopType(loop_type t) { |
|
|
|
|
reader->setLoopType(t); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setLoopStart(uint32_t loop_start) { |
|
|
|
|
reader->setLoopStart(loop_start); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setLoopFinish(uint32_t loop_finish) { |
|
|
|
|
reader->setLoopFinish(loop_finish); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void enableInterpolation(bool enable) { |
|
|
|
|
if (enable) |
|
|
|
|
reader->setInterpolationType(ResampleInterpolationType::resampleinterpolation_quadratic); |
|
|
|
|
else
|
|
|
|
|
reader->setInterpolationType(ResampleInterpolationType::resampleinterpolation_none); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool isPlaying(void) { |
|
|
|
|
return reader->isPlaying(); |
|
|
|
|
}; |
|
|
|
|
bool playWav(const unsigned int *data, uint32_t fileSize) { |
|
|
|
|
return playWav((int16_t *) data, fileSize); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void stop() { |
|
|
|
|
reader->stop(); |
|
|
|
|
} |
|
|
|
|
void setPlaybackRate(float f) { |
|
|
|
|
reader->setPlaybackRate(f); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void update() |
|
|
|
|
{ |
|
|
|
|
int _numChannels = reader->getNumChannels(); |
|
|
|
|
if (_numChannels == -1) |
|
|
|
|
return; |
|
|
|
|
void setLoopType(loop_type t) { |
|
|
|
|
reader->setLoopType(t); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setLoopStart(uint32_t loop_start) { |
|
|
|
|
reader->setLoopStart(loop_start); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void setLoopFinish(uint32_t loop_finish) { |
|
|
|
|
reader->setLoopFinish(loop_finish); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void enableInterpolation(bool enable) { |
|
|
|
|
if (enable) |
|
|
|
|
reader->setInterpolationType(ResampleInterpolationType::resampleinterpolation_quadratic); |
|
|
|
|
else
|
|
|
|
|
reader->setInterpolationType(ResampleInterpolationType::resampleinterpolation_none); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool isPlaying(void) { |
|
|
|
|
return reader->isPlaying(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
void stop() { |
|
|
|
|
reader->stop(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void update() |
|
|
|
|
{ |
|
|
|
|
int _numChannels = reader->getNumChannels(); |
|
|
|
|
if (_numChannels == -1) |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
unsigned int n; |
|
|
|
|
unsigned int n; |
|
|
|
|
audio_block_t *blocks[_numChannels]; |
|
|
|
|
int16_t *data[_numChannels]; |
|
|
|
|
// only update if we're playing
|
|
|
|
|