summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2023-12-07 20:35:05 -0800
committerRoxie Linden <roxie@lindenlab.com>2024-02-22 23:11:36 -0800
commit4d37d1c32f7998b45786dd2de596019b6ba3269d (patch)
tree51cf70388764451bbb476621572c641eadca12b1 /indra
parentb58342a4e08c3adecb9da6d53aae791cc29a917b (diff)
fix mac build break
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llvoicewebrtc.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp
index b9755cdda1..9f290b9d4a 100644
--- a/indra/newview/llvoicewebrtc.cpp
+++ b/indra/newview/llvoicewebrtc.cpp
@@ -123,13 +123,6 @@ namespace {
const F32 CAPTURE_BUFFER_MAX_TIME = 10.f;
}
-static int scale_mic_volume(float volume)
-{
- // incoming volume has the range [0.0 ... 2.0], with 1.0 as the default.
- // Map it to WebRTC levels as follows: 0.0 -> 30, 1.0 -> 50, 2.0 -> 70
- return 30 + (int)(volume * 20.0f);
-}
-
///////////////////////////////////////////////////////////////////////////////////////////////