diff options
Diffstat (limited to 'source/frontend/StarVoice.hpp')
-rw-r--r-- | source/frontend/StarVoice.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/frontend/StarVoice.hpp b/source/frontend/StarVoice.hpp index 236dfb0..15d9cd6 100644 --- a/source/frontend/StarVoice.hpp +++ b/source/frontend/StarVoice.hpp @@ -180,6 +180,7 @@ private: int64_t m_nextSaveTime = 0; bool m_enabled = true; bool m_inputEnabled = false; + bool m_loopBack = false; int m_deviceChannels = 1; bool m_deviceOpen = false; @@ -192,6 +193,9 @@ private: ConditionVariable m_threadCond; atomic<bool> m_stopThread; + std::vector<int16_t> m_decodeBuffer; + std::vector<int16_t> m_resampleBuffer; + ApplicationControllerPtr m_applicationController; struct EncodedChunk { |