Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion shared-module/audiocore/RawSample.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ void common_hal_audioio_rawsample_construct(audioio_rawsample_obj_t* self,
self->len = len;
self->channel_count = channel_count;
self->sample_rate = sample_rate;
self->buffer_read = false;
}

void common_hal_audioio_rawsample_deinit(audioio_rawsample_obj_t* self) {
Expand Down
1 change: 0 additions & 1 deletion shared-module/audiocore/RawSample.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ typedef struct {
bool samples_signed;
uint8_t channel_count;
uint32_t sample_rate;
bool buffer_read;
} audioio_rawsample_obj_t;


Expand Down