[audiocore] `buffer_read` was never used
This commit is contained in:
parent
c68073e12b
commit
915a5eddeb
|
@ -43,7 +43,6 @@ void common_hal_audioio_rawsample_construct(audioio_rawsample_obj_t* self,
|
||||||
self->len = len;
|
self->len = len;
|
||||||
self->channel_count = channel_count;
|
self->channel_count = channel_count;
|
||||||
self->sample_rate = sample_rate;
|
self->sample_rate = sample_rate;
|
||||||
self->buffer_read = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void common_hal_audioio_rawsample_deinit(audioio_rawsample_obj_t* self) {
|
void common_hal_audioio_rawsample_deinit(audioio_rawsample_obj_t* self) {
|
||||||
|
|
|
@ -39,7 +39,6 @@ typedef struct {
|
||||||
bool samples_signed;
|
bool samples_signed;
|
||||||
uint8_t channel_count;
|
uint8_t channel_count;
|
||||||
uint32_t sample_rate;
|
uint32_t sample_rate;
|
||||||
bool buffer_read;
|
|
||||||
} audioio_rawsample_obj_t;
|
} audioio_rawsample_obj_t;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue