diff options
author | Roxanne Skelly <roxie@lindenlab.com> | 2024-03-15 11:12:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 11:12:41 -0700 |
commit | 23ecf64b248adafabdf391599f2c84418acbc954 (patch) | |
tree | 5ebe56c1b899ce0768dd2c7320fcb7e579ec7ec8 /indra/newview/llvoiceclient.cpp | |
parent | b32364ba49ab58656fc6b146e5db499022dc9512 (diff) | |
parent | dbbbbc55af5c1b5e81e7a493a9b5fe5718f15c07 (diff) |
Merge pull request #118 from secondlife/roxie/webrtc-voice
Various WebRTC Fixes and Improvements
Diffstat (limited to 'indra/newview/llvoiceclient.cpp')
-rw-r--r-- | indra/newview/llvoiceclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index b9b8742c41..9dbf469ca8 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -382,14 +382,14 @@ void LLVoiceClient::refreshDeviceLists(bool clearCurrentList) void LLVoiceClient::setCaptureDevice(const std::string& name) { + LLVivoxVoiceClient::getInstance()->setCaptureDevice(name); LLWebRTCVoiceClient::getInstance()->setCaptureDevice(name); - LLVivoxVoiceClient::getInstance()->setCaptureDevice(name); } void LLVoiceClient::setRenderDevice(const std::string& name) { + LLVivoxVoiceClient::getInstance()->setRenderDevice(name); LLWebRTCVoiceClient::getInstance()->setRenderDevice(name); - LLVivoxVoiceClient::getInstance()->setRenderDevice(name); } const LLVoiceDeviceList& LLVoiceClient::getCaptureDevices() |