From 8ca10c1ddc1f44d9534ca5cd5f6625c3884b0ead Mon Sep 17 00:00:00 2001 From: MihailRis Date: Tue, 27 Feb 2024 23:42:19 +0300 Subject: [PATCH] another fix --- src/coders/wav.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/coders/wav.cpp b/src/coders/wav.cpp index 0e95272c..bb104f0b 100644 --- a/src/coders/wav.cpp +++ b/src/coders/wav.cpp @@ -116,6 +116,5 @@ audio::PCM* wav::load_pcm(const std::filesystem::path& file, bool headerOnly) { throw std::runtime_error("could not load wav data of '"+file.u8string()+"'"); } } - std::cout << channels << " " << bitsPerSample << " " << sampleRate << std::endl; return new audio::PCM(std::move(data), channels, bitsPerSample, sampleRate); }