summaryrefslogtreecommitdiffstats
path: root/src/audio_core/audio_renderer.h
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2018-08-12 20:32:39 +0200
committerMerryMage <MerryMage@users.noreply.github.com>2018-08-13 12:26:50 +0200
commit4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79 (patch)
treeaff40cf37d7946ebff6317f2f715f21075514ebb /src/audio_core/audio_renderer.h
parentaudio_core: Implement low-pass filter (diff)
downloadyuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.tar
yuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.tar.gz
yuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.tar.bz2
yuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.tar.lz
yuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.tar.xz
yuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.tar.zst
yuzu-4b44b8b4fba5ddfe28e5c6bd418f48ba475eaa79.zip
Diffstat (limited to '')
-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{};