mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 16:10:20 +00:00
LibAudio: Allow resampling from any array-like type
This commit is contained in:
parent
5d01db3493
commit
63d9ec8e94
Notes:
sideshowbarker
2024-07-17 18:12:56 +09:00
Author: https://github.com/kleinesfilmroellchen Commit: https://github.com/SerenityOS/serenity/commit/63d9ec8e94 Pull-request: https://github.com/SerenityOS/serenity/pull/12734 Reviewed-by: https://github.com/Hendiadyoin1 Reviewed-by: https://github.com/awesomekling
1 changed files with 16 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue