From 665679b8854d34c13d8eb92167aa8a4691619d8b Mon Sep 17 00:00:00 2001 From: ailurux Date: Fri, 16 Feb 2024 12:55:11 +1100 Subject: WIP: seeking in lua example --- src/codecs/wav.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/codecs/wav.cpp') diff --git a/src/codecs/wav.cpp b/src/codecs/wav.cpp index 22cbd49c..5dd6f031 100644 --- a/src/codecs/wav.cpp +++ b/src/codecs/wav.cpp @@ -218,7 +218,6 @@ auto WavDecoder::DecodeTo(cpp::span output) buffer_.ConsumeBytes([&](cpp::span buf) -> size_t { size_t bytes_read = buf.size_bytes(); - ESP_LOGI(kTag, "Bytes read: %d", bytes_read); size_t frames_read = bytes_read / bytes_per_sample_ / output_format_.num_channels; @@ -244,10 +243,6 @@ auto WavDecoder::DecodeTo(cpp::span output) return samples_written * bytes_per_sample_; }); - ESP_LOGI(kTag, "Samples written %d", samples_written); - if (is_eof) { - ESP_LOGI(kTag, "EOF"); - } return OutputInfo{.samples_written = samples_written, .is_stream_finished = samples_written == 0 && is_eof}; -- cgit v1.2.3