Skip to content

Commit 0b7a4c4

Browse files
committed
i2s_fill_buffer: remove debug print
1 parent 873a300 commit 0b7a4c4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ports/esp32s2/i2s_common.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ static void i2s_fill_buffer(i2s_t *self) {
7373
}
7474
#define STACK_BUFFER_SIZE (512)
7575
int16_t signed_samples[STACK_BUFFER_SIZE / sizeof(int16_t)];
76-
mp_printf(&mp_plat_print, "playing=%d paused=%d stopping=%d sample@%p sample_data=%p..%p\n", self->playing, self->paused, self->stopping, self->sample, self->sample_data, self->sample_end);
7776

7877
if (!self->playing || self->paused || !self->sample || self->stopping) {
7978
memset(signed_samples, 0, sizeof(signed_samples));

0 commit comments

Comments
 (0)