diff options
| author | Erik Kundiman <erik@megapahit.org> | 2025-10-30 11:19:47 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2025-10-30 11:19:47 +0800 |
| commit | 0acfb74bbcf801978905db45d326d8538a32b1ed (patch) | |
| tree | e05532ed6e50ac934b01f07659f4d592d7904874 /indra/llwebrtc/llwebrtc.cpp | |
| parent | 4699ec3044d48c080bc58e1e5ae7aac85fab1ffe (diff) | |
| parent | 5a0ba25d83862e7d220c1ae62173b537b7db5b52 (diff) | |
Merge tag 'Second_Life_Release#5a0ba25d-2025.08' into 2025.08
Diffstat (limited to 'indra/llwebrtc/llwebrtc.cpp')
| -rw-r--r-- | indra/llwebrtc/llwebrtc.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/indra/llwebrtc/llwebrtc.cpp b/indra/llwebrtc/llwebrtc.cpp index d453ad0c7b..7c2481a94c 100644 --- a/indra/llwebrtc/llwebrtc.cpp +++ b/indra/llwebrtc/llwebrtc.cpp @@ -588,14 +588,20 @@ void LLWebRTCImpl::workerDeployDevices() void LLWebRTCImpl::setCaptureDevice(const std::string &id) { - mRecordingDevice = id; - deployDevices(); + if (mRecordingDevice != id) + { + mRecordingDevice = id; + deployDevices(); + } } void LLWebRTCImpl::setRenderDevice(const std::string &id) { - mPlayoutDevice = id; - deployDevices(); + if (mPlayoutDevice != id) + { + mPlayoutDevice = id; + deployDevices(); + } } // updateDevices needs to happen on the worker thread. |
