diff options
author | Rider Linden <rider@lindenlab.com> | 2015-12-11 15:43:08 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-12-11 15:43:08 -0800 |
commit | de2a94665bd694d1af6a609ce9e8c1a829a5a91c (patch) | |
tree | 0315033664aa4ce060ced5f4135e6fec511dd4c7 /indra/newview/llvoicevivox.h | |
parent | c5ba7f6a869f82370c5f1a6ca410b6d101eedcb7 (diff) |
Remove some of the dead code. 1:1 chat is working but group chat fails now. Need to reexamine the entire flow.
Diffstat (limited to 'indra/newview/llvoicevivox.h')
-rwxr-xr-x | indra/newview/llvoicevivox.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h index 3a0d46db1c..3da24c61f3 100755 --- a/indra/newview/llvoicevivox.h +++ b/indra/newview/llvoicevivox.h @@ -612,9 +612,6 @@ protected: // Does the actual work to get out of the audio session void leaveAudioSession(); - // notifies the voice client that we've received parcel voice info - bool parcelVoiceInfoReceived(state requesting_state); - friend class LLVivoxVoiceClientCapResponder; @@ -655,7 +652,7 @@ private: bool loginToVivox(); bool retrieveVoiceFonts(); - bool requestParcelVoiceInfo(state exitState); + bool requestParcelVoiceInfo(); bool addAndJoinSession(sessionState *nextSession); bool terminateAudioSession(bool wait); @@ -839,8 +836,6 @@ private: std::string mWriteString; size_t mWriteOffset; - LLTimer mUpdateTimer; - BOOL mLipSyncEnabled; typedef std::set<LLVoiceClientParticipantObserver*> observer_set_t; @@ -935,10 +930,13 @@ private: bool mCaptureBufferRecorded; // A voice sample is captured in the buffer ready to play. bool mCaptureBufferPlaying; // A voice sample is being played. - LLTimer mCaptureTimer; - LLUUID mPreviewVoiceFont; - LLUUID mPreviewVoiceFontLast; - S32 mPlayRequestCount; + LLTimer mCaptureTimer; + LLUUID mPreviewVoiceFont; + LLUUID mPreviewVoiceFontLast; + S32 mPlayRequestCount; + bool mIsInTuningMode; + bool mIsInChannel; + bool mIsJoiningSession; }; /** @@ -1049,6 +1047,7 @@ protected: void EndTag(const char *tag); void CharData(const char *buffer, int length); LLDate expiryTimeStampToLLDate(const std::string& vivox_ts); + }; |