2017-04-24 02:08:33 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-04-24 02:08:33 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
|
2020-04-29 09:30:26 +00:00
|
|
|
#include <SoundTouch.h>
|
2017-04-24 02:08:33 +00:00
|
|
|
|
|
|
|
namespace AudioCommon
|
|
|
|
{
|
|
|
|
class AudioStretcher
|
|
|
|
{
|
|
|
|
public:
|
2017-04-24 02:11:43 +00:00
|
|
|
explicit AudioStretcher(unsigned int sample_rate);
|
|
|
|
void ProcessSamples(const short* in, unsigned int num_in, unsigned int num_out);
|
|
|
|
void GetStretchedSamples(short* out, unsigned int num_out);
|
2017-04-24 02:08:33 +00:00
|
|
|
void Clear();
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned int m_sample_rate;
|
|
|
|
std::array<short, 2> m_last_stretched_sample = {};
|
|
|
|
soundtouch::SoundTouch m_sound_touch;
|
|
|
|
double m_stretch_ratio = 1.0;
|
|
|
|
};
|
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace AudioCommon
|