LibAudio: Silence some debug spam in the WAV loader.
This commit is contained in:
parent
ae4a9e017a
commit
66f8ea92cb
Notes:
sideshowbarker
2024-07-19 13:00:22 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/66f8ea92cbd
1 changed files with 2 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue