diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-16 20:44:15 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-16 20:44:15 +1000 |
commit | da098c7b4812408d1316b14b3b3f46d2ec7dce04 (patch) | |
tree | 6ec4606013ecad5b63f53f4c681cf501ad13f37a /source/frontend/StarVoice.hpp | |
parent | 4e44a4ed7566fbbc7248796423b822430205ad98 (diff) |
Support receiving SE voice data, resample per-speaker again because of positional delay
Diffstat (limited to 'source/frontend/StarVoice.hpp')
-rw-r--r-- | source/frontend/StarVoice.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/frontend/StarVoice.hpp b/source/frontend/StarVoice.hpp index 94ef8ac..3b95235 100644 --- a/source/frontend/StarVoice.hpp +++ b/source/frontend/StarVoice.hpp @@ -80,6 +80,8 @@ public: VoiceAudioStreamPtr audioStream; Mutex mutex; + int64_t lastReceiveTime = 0; + atomic<bool> muted = false; atomic<bool> playing = false; atomic<float> decibelLevel = 0.0f; |