]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-11470: WebRTC Unified plan not properly supported
authorChad Phillips <chad@apartmentlines.com>
Sun, 21 Oct 2018 21:50:04 +0000 (14:50 -0700)
committerChad Phillips <chad@apartmentlines.com>
Sun, 21 Oct 2018 21:50:04 +0000 (14:50 -0700)
Chrome is beginning to default their SDP semantics to the WebRTC standard
'Unified Plan', and Verto does not currently construct its SDP according
to this standard. For now, force the browser to use 'Plan B' semantics.

html5/verto/js/src/jquery.FSRTC.js

index 661442f0b498e42e75b1af1888a43e20dfa90301..82b7c6fd8d9acca69c59b998fc1db405a164186a 100644 (file)
         }
 
        config.bundlePolicy = "max-compat";
+       config.sdpSemantics = "plan-b";
 
         var peer = new window.RTCPeerConnection(config);