Merge pull request #11798 from antobinary/update-npm-deps-2

Backport sdpSemantics unified-plan
This commit is contained in:
Anton Georgiev 2021-03-29 16:11:44 -04:00 committed by GitHub
commit b9456d0267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -39,6 +39,7 @@ const WEBSOCKET_KEEP_ALIVE_DEBOUNCE = MEDIA.websocketKeepAliveDebounce || 10;
const TRACE_SIP = MEDIA.traceSip || false; const TRACE_SIP = MEDIA.traceSip || false;
const AUDIO_MICROPHONE_CONSTRAINTS = Meteor.settings.public.app.defaultSettings const AUDIO_MICROPHONE_CONSTRAINTS = Meteor.settings.public.app.defaultSettings
.application.microphoneConstraints; .application.microphoneConstraints;
const SDP_SEMANTICS = MEDIA.sdpSemantics;
const getAudioSessionNumber = () => { const getAudioSessionNumber = () => {
let currItem = parseInt(sessionStorage.getItem(AUDIO_SESSION_NUM_KEY), 10); let currItem = parseInt(sessionStorage.getItem(AUDIO_SESSION_NUM_KEY), 10);
@ -381,7 +382,7 @@ class SIPSession {
sessionDescriptionHandlerFactoryOptions: { sessionDescriptionHandlerFactoryOptions: {
peerConnectionConfiguration: { peerConnectionConfiguration: {
iceServers, iceServers,
sdpSemantics: 'plan-b', sdpSemantics: SDP_SEMANTICS,
}, },
}, },
displayName: callerIdName, displayName: callerIdName,

View File

@ -321,6 +321,8 @@ public:
websocketKeepAliveDebounce: 10 websocketKeepAliveDebounce: 10
#Trace sip/audio messages in browser. If not set, default value is false. #Trace sip/audio messages in browser. If not set, default value is false.
traceSip: false traceSip: false
# SDP semantics: plan-b|unified-plan
sdpSemantics: 'unified-plan'
presentation: presentation:
defaultPresentationFile: default.pdf defaultPresentationFile: default.pdf
panZoomThrottle: 32 panZoomThrottle: 32