@webex/web-client-media-engine 3.25.2 → 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/esm/index.js CHANGED
@@ -14804,6 +14804,7 @@ const defaultMultistreamConnectionOptions = {
14804
14804
  disableSimulcast: BrowserInfo.isFirefox(),
14805
14805
  bundlePolicy: 'max-compat',
14806
14806
  iceServers: undefined,
14807
+ iceTransportPolicy: 'all',
14807
14808
  disableContentSimulcast: true,
14808
14809
  disableAudioTwcc: true,
14809
14810
  doFullIce: BrowserInfo.isFirefox(),
@@ -14842,6 +14843,7 @@ class MultistreamConnection extends EventEmitter$2 {
14842
14843
  this.pc = new PeerConnection({
14843
14844
  iceServers: this.options.iceServers,
14844
14845
  bundlePolicy: this.options.bundlePolicy,
14846
+ iceTransportPolicy: this.options.iceTransportPolicy,
14845
14847
  });
14846
14848
  this.propagatePeerConnectionEvents();
14847
14849
  this.attachMetricsObserver();