You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
72 lines
1.8 KiB
3 years ago
|
//
|
||
|
// Created by Nicholas Newdigate on 18/07/2020.
|
||
|
//
|
||
|
|
||
|
#ifndef TEENSY_RESAMPLING_SDREADER_PLAYARRAYRESMP_H
|
||
|
#define TEENSY_RESAMPLING_SDREADER_PLAYARRAYRESMP_H
|
||
|
|
||
|
|
||
|
#include "Arduino.h"
|
||
|
#include "AudioStream.h"
|
||
|
#include "ResamplingArrayReader.h"
|
||
|
#include "playresmp.h"
|
||
|
|
||
|
class AudioPlayArrayResmp : public AudioPlayResmp
|
||
|
{
|
||
|
public:
|
||
|
AudioPlayArrayResmp(void) :
|
||
|
AudioPlayResmp(),
|
||
|
arrayReader()
|
||
|
{
|
||
|
begin();
|
||
|
}
|
||
|
|
||
|
void begin(void);
|
||
|
bool playRaw(int16_t *data, uint32_t numSamples, uint16_t numChannels);
|
||
|
bool playRaw(const unsigned int *data, uint32_t numSamples, uint16_t numChannels);
|
||
|
|
||
|
bool playWav(int16_t *data, uint32_t fileSize);
|
||
|
bool playWav(const unsigned int *data, uint32_t fileSize);
|
||
|
|
||
|
void stop(void);
|
||
|
bool isPlaying(void) { return arrayReader.isPlaying(); }
|
||
|
uint32_t positionMillis(void);
|
||
|
uint32_t lengthMillis(void);
|
||
|
virtual void update(void);
|
||
|
|
||
|
void setPlaybackRate(float f) {
|
||
|
arrayReader.setPlaybackRate(f);
|
||
|
}
|
||
|
|
||
|
void setLoopType(loop_type t) {
|
||
|
arrayReader.setLoopType(t);
|
||
|
}
|
||
|
|
||
|
void startLoop(uint32_t samples) {
|
||
|
arrayReader.loop(samples);
|
||
|
}
|
||
|
|
||
|
void setLoopStart(uint32_t loop_start) {
|
||
|
arrayReader.setLoopStart(loop_start);
|
||
|
}
|
||
|
|
||
|
void setLoopFinish(uint32_t loop_finish) {
|
||
|
arrayReader.setLoopFinish(loop_finish);
|
||
|
}
|
||
|
|
||
|
void enableInterpolation(bool enable) {
|
||
|
if (enable)
|
||
|
arrayReader.setInterpolationType(ResampleInterpolationType::resampleinterpolation_quadratic);
|
||
|
else
|
||
|
arrayReader.setInterpolationType(ResampleInterpolationType::resampleinterpolation_none);
|
||
|
}
|
||
|
private:
|
||
|
|
||
|
uint32_t file_size;
|
||
|
ResamplingArrayReader arrayReader;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //TEENSY_RESAMPLING_SDREADER_PLAYARRAYRESMP_H
|