diff options
| author | ailurux <ailuruxx@gmail.com> | 2024-09-17 14:12:17 +1000 |
|---|---|---|
| committer | ailurux <ailuruxx@gmail.com> | 2024-09-17 14:12:17 +1000 |
| commit | 6c1757a1766180497dc5196193c9e81417074ba7 (patch) | |
| tree | 9c3e5b9b9395956f9f63e6b52b6e388b7f6519e6 /src/codecs/wav.cpp | |
| parent | c4ec089a90ae4a61a50a03cf8338d63488edfd62 (diff) | |
| parent | 7d1266404d8e876ba909d101eb316868036b423c (diff) | |
| download | tangara-fw-6c1757a1766180497dc5196193c9e81417074ba7.tar.gz | |
Merge branch 'main' into daniel/persistent-positions
Diffstat (limited to 'src/codecs/wav.cpp')
| -rw-r--r-- | src/codecs/wav.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codecs/wav.cpp b/src/codecs/wav.cpp index f5b9d789..746f44ca 100644 --- a/src/codecs/wav.cpp +++ b/src/codecs/wav.cpp @@ -137,8 +137,6 @@ auto WavDecoder::OpenStream(std::shared_ptr<IStream> input, uint32_t offset) // uint32_t file_size = bytes_to_u32(buffer_span.subspan(4, 4)) + 8; std::string fmt_header = bytes_to_str(buffer_span.subspan(12, 4)); - ESP_LOGI(kTag, "fmt header found? %s", - (fmt_header.starts_with("fmt")) ? "yes" : "no"); if (!fmt_header.starts_with("fmt")) { ESP_LOGW(kTag, "Could not find format chunk"); return cpp::fail(Error::kMalformedData); |
