Browse Source

Upadte ljm (configurable pc stats interval), whitelist config options. (#5106)

j8
bgrozev 5 years ago
parent
commit
16c09c9645
No account linked to committer's email address
3 changed files with 7 additions and 1 deletions
  1. 4
    0
      config.js
  2. 1
    1
      package.json
  3. 2
    0
      react/features/base/config/configWhitelist.js

+ 4
- 0
config.js View File

@@ -75,6 +75,7 @@ var config = {
75 75
 
76 76
     // Disable measuring of audio levels.
77 77
     // disableAudioLevels: false,
78
+    // audioLevelsInterval: 200,
78 79
 
79 80
     // Enabling this will run the lib-jitsi-meet no audio detection module which
80 81
     // will notify the user if the current selected microphone has no audio
@@ -301,6 +302,9 @@ var config = {
301 302
     // estimation tests.
302 303
     // gatherStats: false,
303 304
 
305
+    // The interval at which PeerConnection.getStats() is called. Defaults to 10000
306
+    // pcStatsInterval: 10000,
307
+
304 308
     // To enable sending statistics to callstats.io you must provide the
305 309
     // Application ID and Secret.
306 310
     // callStatsID: '',

+ 1
- 1
package.json View File

@@ -56,7 +56,7 @@
56 56
     "js-utils": "github:jitsi/js-utils#8567f86ec2774ae1d1c47b22e3435928cf5d9771",
57 57
     "jsrsasign": "8.0.12",
58 58
     "jwt-decode": "2.2.0",
59
-    "lib-jitsi-meet": "github:jitsi/lib-jitsi-meet#47c2bc65457b0cd1620e171cf79ffe4d49d071c5",
59
+    "lib-jitsi-meet": "github:jitsi/lib-jitsi-meet#b24bbdee4ecd8d42bc047743a5b13f8b14f98b23",
60 60
     "libflacjs": "github:mmig/libflac.js#93d37e7f811f01cf7d8b6a603e38bd3c3810907d",
61 61
     "lodash": "4.17.13",
62 62
     "moment": "2.19.4",

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

@@ -12,6 +12,7 @@ export default [
12 12
     '_peerConnStatusRtcMuteTimeout',
13 13
     'abTesting',
14 14
     'analytics.disabled',
15
+    'audioLevelsInterval',
15 16
     'autoRecord',
16 17
     'autoRecordToken',
17 18
     'avgRtpStatsN',
@@ -121,6 +122,7 @@ export default [
121 122
     'nick',
122 123
     'openBridgeChannel',
123 124
     'p2p',
125
+    'pcStatsInterval',
124 126
     'preferH264',
125 127
     'requireDisplayName',
126 128
     'resolution',

Loading…
Cancel
Save