@webex/web-client-media-engine 3.25.1 → 3.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -14808,6 +14808,7 @@ const defaultMultistreamConnectionOptions = {
|
|
|
14808
14808
|
disableSimulcast: BrowserInfo.isFirefox(),
|
|
14809
14809
|
bundlePolicy: 'max-compat',
|
|
14810
14810
|
iceServers: undefined,
|
|
14811
|
+
iceTransportPolicy: 'all',
|
|
14811
14812
|
disableContentSimulcast: true,
|
|
14812
14813
|
disableAudioTwcc: true,
|
|
14813
14814
|
doFullIce: BrowserInfo.isFirefox(),
|
|
@@ -14846,6 +14847,7 @@ class MultistreamConnection extends EventEmitter$2 {
|
|
|
14846
14847
|
this.pc = new PeerConnection({
|
|
14847
14848
|
iceServers: this.options.iceServers,
|
|
14848
14849
|
bundlePolicy: this.options.bundlePolicy,
|
|
14850
|
+
iceTransportPolicy: this.options.iceTransportPolicy,
|
|
14849
14851
|
});
|
|
14850
14852
|
this.propagatePeerConnectionEvents();
|
|
14851
14853
|
this.attachMetricsObserver();
|