Skip to content

Commit 2881699

Browse files
authored
Merge pull request #4338 from tyomitch/patch-2
[audiocore] `buffer_read` was never used
2 parents dfcc9c6 + 915a5ed commit 2881699

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

shared-module/audiocore/RawSample.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ void common_hal_audioio_rawsample_construct(audioio_rawsample_obj_t* self,
4343
self->len = len;
4444
self->channel_count = channel_count;
4545
self->sample_rate = sample_rate;
46-
self->buffer_read = false;
4746
}
4847

4948
void common_hal_audioio_rawsample_deinit(audioio_rawsample_obj_t* self) {

shared-module/audiocore/RawSample.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ typedef struct {
3939
bool samples_signed;
4040
uint8_t channel_count;
4141
uint32_t sample_rate;
42-
bool buffer_read;
4342
} audioio_rawsample_obj_t;
4443

4544

0 commit comments

Comments
 (0)