@webex/web-client-media-engine 3.15.2 → 3.15.4

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
@@ -1413,6 +1413,7 @@ class _LocalStream extends Stream {
1413
1413
  stop() {
1414
1414
  this.inputTrack.stop();
1415
1415
  this.outputTrack.stop();
1416
+ this.disposeEffects();
1416
1417
  // calling stop() will not automatically emit Ended, so we emit it here
1417
1418
  this[StreamEventNames.Ended].emit();
1418
1419
  }
@@ -9674,7 +9675,6 @@ class EgressSdpMunger {
9674
9675
  if (mediaDescription.codecs.size === 0) {
9675
9676
  logErrorAndThrow(WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
9676
9677
  }
9677
- mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
9678
9678
  mediaDescription.rids = [];
9679
9679
  mediaDescription.simulcast = undefined;
9680
9680
  removeMidRidExtensions(mediaDescription);
@@ -10280,7 +10280,6 @@ class IngressSdpMunger {
10280
10280
  if (mediaDescription.codecs.size === 0) {
10281
10281
  logErrorAndThrow(WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
10282
10282
  }
10283
- mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
10284
10283
  removeMidRidExtensions(mediaDescription);
10285
10284
  if (options.twccDisabled) {
10286
10285
  disableTwcc(mediaDescription);