1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:17:35 +00:00

LibAudio: Silence some debug spam in the WAV loader.

This commit is contained in:
Andreas Kling 2019-07-28 21:54:34 +02:00
parent ae4a9e017a
commit 66f8ea92cb

View file

@ -242,7 +242,9 @@ RefPtr<ABuffer> ABuffer::from_pcm_data(ByteBuffer& data, int num_channels, int b
Vector<ASample> fdata;
fdata.ensure_capacity(data.size() * 2);
#ifdef AWAVLOADER_DEBUG
dbg() << "Reading " << bits_per_sample << " bits and " << num_channels << " channels, total bytes: " << data.size();
#endif
switch (bits_per_sample) {
case 8: