diff options
author | Roxie Linden <roxie@lindenlab.com> | 2025-08-06 11:48:44 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2025-08-08 14:37:46 -0700 |
commit | bab2c12d048e7faf021ee3a9df39251e91973abf (patch) | |
tree | b4d5928717a283b46f9a85c9489c1f31db3d1963 /indra/newview/llvoicewebrtc.h | |
parent | 8ef660a7450dad60e5f73cd2cc50aeb6b9f8a356 (diff) |
Straighten out muting to prevent echo when crossing from vivox to webrtc regions.
Muting was a bit random in the code, so it's now been straightened out and should
prevent echo.
Also, code was added to not attempt connection to non-webrtc regions in the webrtc code.
Diffstat (limited to 'indra/newview/llvoicewebrtc.h')
-rw-r--r-- | indra/newview/llvoicewebrtc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llvoicewebrtc.h b/indra/newview/llvoicewebrtc.h index ff82d2739d..71347f206a 100644 --- a/indra/newview/llvoicewebrtc.h +++ b/indra/newview/llvoicewebrtc.h @@ -351,6 +351,9 @@ public: bool isSpatial() override { return true; } bool isEstate() override { return true; } bool isCallbackPossible() override { return false; } + + private: + bool isRegionWebRTCEnabled(const LLUUID& regionID); }; class parcelSessionState : public sessionState |