diff options
author | Roxanne Skelly <roxanne@roxiware.com> | 2024-04-02 08:05:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 08:05:49 -0700 |
commit | a0cc1b6bd2b1f3578c8d34b634e4add20bae2dd2 (patch) | |
tree | 769b00ece536781b3b2d3e28f8ca395b3ffb773b /indra/llwebrtc/llwebrtc_impl.h | |
parent | d59d0c98fe491feb9f8479f399ccb30667f98e85 (diff) | |
parent | fdf0fbce5b4c8f15493ff064ef4d092f52c6ef73 (diff) |
Merge pull request #1108 from secondlife/roxie/webrtc-voice
Diffstat (limited to 'indra/llwebrtc/llwebrtc_impl.h')
-rw-r--r-- | indra/llwebrtc/llwebrtc_impl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/llwebrtc/llwebrtc_impl.h b/indra/llwebrtc/llwebrtc_impl.h index 328e962c50..78ae6b4444 100644 --- a/indra/llwebrtc/llwebrtc_impl.h +++ b/indra/llwebrtc/llwebrtc_impl.h @@ -244,8 +244,12 @@ class LLWebRTCImpl : public LLWebRTCDeviceInterface, public webrtc::AudioDeviceS // accessors in native webrtc for devices aren't apparently implemented yet. bool mTuningMode; - int32_t mPlayoutDevice; int32_t mRecordingDevice; + LLWebRTCVoiceDeviceList mRecordingDeviceList; + + int32_t mPlayoutDevice; + LLWebRTCVoiceDeviceList mPlayoutDeviceList; + bool mMute; LLAudioDeviceObserver * mTuningAudioDeviceObserver; |