Browse Source

config: fix opusMaxAverageBitrate option name

Must match the lib-jitsi-meet counterpart.

Fixes: https://github.com/jitsi/jitsi-meet/issues/7384
master
Saúl Ibarra Corretgé 5 years ago
parent
commit
fdbd681c8f
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      config.js
  2. 1
    1
      react/features/base/config/configWhitelist.js

+ 1
- 1
config.js View File

@@ -116,7 +116,7 @@ var config = {
116 116
     // Sets the preferred target bitrate for the Opus audio codec by setting its
117 117
     // 'maxaveragebitrate' parameter. Currently not available in p2p mode.
118 118
     // Valid values are in the range 6000 to 510000
119
-    // opusMaxAvgBitrate: 20000,
119
+    // opusMaxAverageBitrate: 20000,
120 120
 
121 121
     // Video
122 122
 

+ 1
- 1
react/features/base/config/configWhitelist.js View File

@@ -125,7 +125,7 @@ export default [
125 125
     'minParticipants',
126 126
     'nick',
127 127
     'openBridgeChannel',
128
-    'opusMaxAvgBitrate',
128
+    'opusMaxAverageBitrate',
129 129
     'p2p',
130 130
     'pcStatsInterval',
131 131
     'preferH264',

Loading…
Cancel
Save