13 std::unique_ptr<AudioSinkTransferBuffer> sink_buffer = make_unique<AudioSinkTransferBuffer>();
15 if (!sink_buffer->allocate_buffer_(buffer_size)) {
23 std::unique_ptr<AudioSourceTransferBuffer> source_buffer = make_unique<AudioSourceTransferBuffer>();
25 if (!source_buffer->allocate_buffer_(buffer_size)) {
64 if (this->speaker_ !=
nullptr) {
65 this->speaker_->stop();
103 if (this->
buffer_ !=
nullptr) {
123 size_t bytes_to_read = this->
free();
124 size_t bytes_read = 0;
125 if (bytes_to_read > 0) {
136 size_t bytes_written = 0;
139 if (this->speaker_ !=
nullptr) {
157 return bytes_written;
162 if (this->speaker_ !=
nullptr) {
163 return (this->speaker_->has_buffered_data() || (this->
available() > 0));
void clear_buffered_data() override
void deallocate_buffer_()
Deallocates the buffer and resets the class variables.
size_t transfer_data_from_source(TickType_t ticks_to_wait, bool pre_shift=true)
Reads any available data from the sink into the transfer buffer.
uint8_t * get_buffer_end() const
Returns a pointer to the end of the transfer buffer where free() bytes of new data can be written...
static std::unique_ptr< AudioSinkTransferBuffer > create(size_t buffer_size)
Creates a new sink transfer buffer.
virtual bool has_buffered_data() const
Tests if there is any data in the tranfer buffer or the source/sink.
bool allocate_buffer_(size_t buffer_size)
Allocates the transfer buffer in external memory, if available.
void decrease_buffer_length(size_t bytes)
Updates the internal state of the transfer buffer.
size_t available() const
Returns the transfer buffer's currently available bytes to read.
bool has_buffered_data() const override
size_t transfer_data_to_sink(TickType_t ticks_to_wait, bool post_shift=true)
Writes any available data in the transfer buffer to the sink.
static std::unique_ptr< AudioSourceTransferBuffer > create(size_t buffer_size)
Creates a new source transfer buffer.
size_t free() const
Returns the transfer buffer's currrently free bytes available to write.
bool reallocate(size_t new_buffer_size)
void deallocate(T *p, size_t n)
void increase_buffer_length(size_t bytes)
Updates the internal state of the transfer buffer.
~AudioTransferBuffer()
Destructor that deallocates the transfer buffer.
Implementation of SPI Controller mode.
std::vector< uint8_t > bytes
virtual void clear_buffered_data()
Clears data in the transfer buffer and, if possible, the source/sink.
std::shared_ptr< RingBuffer > ring_buffer_