Merge pull request #11798 from antobinary/update-npm-deps-2
Backport sdpSemantics unified-plan
This commit is contained in:
commit
b9456d0267
@ -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,
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user