LibAudio: Allow resampling from any array-like type

This commit is contained in:
kleines Filmröllchen 2022-02-07 22:56:48 +01:00 committed by Andreas Kling
parent 5d01db3493
commit 63d9ec8e94
Notes: sideshowbarker 2024-07-17 18:12:56 +09:00

View file

@ -6,6 +6,7 @@
#pragma once
#include <AK/Concepts.h>
#include <AK/Types.h>
#include <AK/Vector.h>
@ -50,6 +51,21 @@ public:
return false;
}
template<ArrayLike<SampleType> Samples>
Vector<SampleType> resample(Samples&& to_resample)
{
Vector<SampleType> resampled;
resampled.ensure_capacity(to_resample.size() * ceil_div(m_source, m_target));
for (auto sample : to_resample) {
process_sample(sample, sample);
while (read_sample(sample, sample))
resampled.unchecked_append(sample);
}
return resampled;
}
void reset()
{
m_current_ratio = 0;