Compare commits

...

1 Commits

Author SHA1 Message Date
Philipp Hancke
45763ce335 config: allow disabling opus fec
see https://github.com/jitsi/lib-jitsi-meet/pull/1370
2020-10-09 17:38:34 +02:00
2 changed files with 5 additions and 1 deletions

View File

@@ -79,6 +79,9 @@ var config = {
// signalling.
// webrtcIceTcpDisable: false,
// Disables opus forward error correction by removing it from the remote
// SDP in signalling.
// webrtcOpusFecRemove: false,
// Media
//

View File

@@ -152,5 +152,6 @@ export default [
'useTurnUdp',
'videoQuality.persist',
'webrtcIceTcpDisable',
'webrtcIceUdpDisable'
'webrtcIceUdpDisable',
'webrtcOpusFecRemove'
].concat(extraConfigWhitelist);