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

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
@@ -9674,7 +9674,6 @@ class EgressSdpMunger {
9674
9674
  if (mediaDescription.codecs.size === 0) {
9675
9675
  logErrorAndThrow(WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
9676
9676
  }
9677
- mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
9678
9677
  mediaDescription.rids = [];
9679
9678
  mediaDescription.simulcast = undefined;
9680
9679
  removeMidRidExtensions(mediaDescription);
@@ -10280,7 +10279,6 @@ class IngressSdpMunger {
10280
10279
  if (mediaDescription.codecs.size === 0) {
10281
10280
  logErrorAndThrow(WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
10282
10281
  }
10283
- mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
10284
10282
  removeMidRidExtensions(mediaDescription);
10285
10283
  if (options.twccDisabled) {
10286
10284
  disableTwcc(mediaDescription);