aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/audio_renderer.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-13 12:19:59 -0400
committerGitHub <noreply@github.com>2018-08-13 12:19:59 -0400
commitf19b4fab5ff470c060f93eac454bb351e7e37225 (patch)
tree47eb63b32088feac194e06ed76d028717213ff86 /src/audio_core/audio_renderer.h
parent875d52a81f2beb65875b56fd3b104779d413962e (diff)
parent01d199965a5df37e2bba333cecdbc1643b000874 (diff)
Merge pull request #1033 from MerryMage/interp
audio_core: Interpolate
Diffstat (limited to 'src/audio_core/audio_renderer.h')
-rw-r--r--src/audio_core/audio_renderer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/audio_core/audio_renderer.h b/src/audio_core/audio_renderer.h
index 13c5d0adc..eba67f28e 100644
--- a/src/audio_core/audio_renderer.h
+++ b/src/audio_core/audio_renderer.h
@@ -8,6 +8,7 @@
#include <memory>
#include <vector>
+#include "audio_core/algorithm/interpolate.h"
#include "audio_core/audio_out.h"
#include "audio_core/codec.h"
#include "audio_core/stream.h"
@@ -194,6 +195,7 @@ private:
size_t wave_index{};
size_t offset{};
Codec::ADPCMState adpcm_state{};
+ InterpolationState interp_state{};
std::vector<s16> samples;
VoiceOutStatus out_status{};
VoiceInfo info{};