@webex/web-client-media-engine 3.25.2 → 3.26.1

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 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();