Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-11-24 13:11:46 +0300
committerRobert Adam <dev@robert-adam.de>2022-03-27 10:49:59 +0300
commit1017dab5c2f514841cba173c48092b2a01bf002c (patch)
tree39af8d24bc36758c6ad895ed3ca089cb182604ea /src
parent1d45d991aa4d53b6c1bd7d7cae0126a21f3991e1 (diff)
CHANGE(server): Enforce Opus by default
Previously the opusthreshold config option had a default value of 100 meaning that the first non-Opus client would cause everyone to fall back to one of the legacy codecs. Since Opus has been implemented for ages now and we eventually want to get rid of the legacy codecs, this commit changes the default value of this config option to be zero, meaning that the server will always enforce the use of the Opus codec (regardless of what clients are connected).
Diffstat (limited to 'src')
-rw-r--r--src/murmur/Meta.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/murmur/Meta.cpp b/src/murmur/Meta.cpp
index 082761244..d066f6cf9 100644
--- a/src/murmur/Meta.cpp
+++ b/src/murmur/Meta.cpp
@@ -92,7 +92,7 @@ MetaParams::MetaParams() {
uiUid = uiGid = 0;
#endif
- iOpusThreshold = 100;
+ iOpusThreshold = 0;
iChannelNestingLimit = 10;
iChannelCountLimit = 1000;