diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-03-30 23:19:38 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-03-30 23:19:38 -0700 |
commit | c6e673cda139f5faaa52ccd03a372e7ffa9f5716 (patch) | |
tree | 1f743fdb9b737a2b59f0a5c2bf14ebf43b72ceeb /indra/llwebrtc/llwebrtc_impl.h | |
parent | 567180508f7279ffd8039d1e839a6ab4e8fe21e9 (diff) |
Fix windows crashes
* sampling rate was set to 8khz for audio processing, which was
causing a 'bands' mismatch with the echo cancler.
* Some funnybusiness with lambdas and captures and such was causing
a heap crash with respect to function parameters.
Diffstat (limited to 'indra/llwebrtc/llwebrtc_impl.h')
-rw-r--r-- | indra/llwebrtc/llwebrtc_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwebrtc/llwebrtc_impl.h b/indra/llwebrtc/llwebrtc_impl.h index 32faf2516c..328e962c50 100644 --- a/indra/llwebrtc/llwebrtc_impl.h +++ b/indra/llwebrtc/llwebrtc_impl.h @@ -282,7 +282,7 @@ class LLWebRTCPeerConnectionImpl : public LLWebRTCPeerConnectionInterface, // // LLWebRTCPeerConnection // - bool initializeConnection(InitOptions options = InitOptions()) override; + bool initializeConnection(const InitOptions& options) override; bool shutdownConnection() override; void setSignalingObserver(LLWebRTCSignalingObserver *observer) override; |