diff options
| author | Roxie Linden <roxie@lindenlab.com> | 2024-01-02 15:28:31 -0800 | 
|---|---|---|
| committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-08 18:34:02 -0800 | 
| commit | 6abc8b5c99a2b8bf8b66eb6d5ed4acc6fecb85c6 (patch) | |
| tree | b61007f90c62ed00bd79fe5ba4664872f9ee73cb | |
| parent | 3f2d52e5df0d31560cedb6748e2bf4134933be50 (diff) | |
Set mute, speaker volume, mic gain on creation of new connection.
| -rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 12 | 
1 files changed, 8 insertions, 4 deletions
| diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 0c15dbccaf..dd18fabf47 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -358,8 +358,6 @@ void LLWebRTCVoiceClient::terminate()  void LLWebRTCVoiceClient::cleanUp()  { -    LL_DEBUGS("Voice") << LL_ENDL; -      mNextAudioSession.reset();      mAudioSession.reset();      mNeighboringRegions.clear(); @@ -489,7 +487,10 @@ bool LLWebRTCVoiceClient::sessionState::processConnectionStates()      {          for (auto &neighbor : neighbor_ids)          { -            mWebRTCConnections.emplace_back(new LLVoiceWebRTCConnection(neighbor, INVALID_PARCEL_ID, mChannelID)); +            connectionPtr_t connection = mWebRTCConnections.emplace_back(new LLVoiceWebRTCConnection(neighbor, INVALID_PARCEL_ID, mChannelID)); +            connection->setMicGain(mMicGain); +            connection->setMuteMic(mMuted); +            connection->setSpeakerVolume(mSpeakerVolume);          }      }      return !mWebRTCConnections.empty(); @@ -2494,7 +2495,10 @@ void LLVoiceWebRTCConnection::OnDataReceived(const std::string &data, bool binar              {                  if (voice_data[participant_id].get("l", Json::Value(false)).asBool())                  { -                    LLWebRTCVoiceClient::getInstance()->removeParticipantByID(mChannelID, agent_id); +                    if (agent_id != gAgentID) +                    { +                        LLWebRTCVoiceClient::getInstance()->removeParticipantByID(mChannelID, agent_id); +                    }                  }                  else                  { | 
