1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

LibAudio: Allow tweaking how much get_more_samples() reads from file

This commit is contained in:
Andreas Kling 2019-09-04 20:13:32 +02:00
parent a98de0b6ee
commit 6693e56603
2 changed files with 5 additions and 4 deletions

View file

@ -16,13 +16,13 @@ AWavLoader::AWavLoader(const StringView& path)
parse_header();
}
RefPtr<ABuffer> AWavLoader::get_more_samples()
RefPtr<ABuffer> AWavLoader::get_more_samples(size_t max_bytes_to_read_from_input)
{
#ifdef AWAVLOADER_DEBUG
dbgprintf("Read WAV of format PCM with num_channels %u sample rate %u, bits per sample %u\n", m_num_channels, m_sample_rate, m_bits_per_sample);
#endif
auto raw_samples = m_file.read(128 * KB);
auto raw_samples = m_file.read(max_bytes_to_read_from_input);
if (raw_samples.is_empty())
return nullptr;