@webex/web-client-media-engine 3.15.1 → 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);
@@ -15058,7 +15056,7 @@ SCTP Max Message Size: ${maxMessageSize}`);
15058
15056
  }
15059
15057
  }))
15060
15058
  .catch((error) => {
15061
- logErrorAndThrow(WcmeErrorType.CREATE_OFFER_FAILED, `Error: ${error}. SDP: ${maskIp(answer)}`);
15059
+ logErrorAndThrow(WcmeErrorType.SET_ANSWER_FAILED, `Error: ${error}. SDP: ${maskIp(answer)}`);
15062
15060
  });
15063
15061
  });
15064
15062
  }
@@ -15086,7 +15084,7 @@ SCTP Max Message Size: ${maxMessageSize}`);
15086
15084
  logger.info('this.pc.setRemoteDescription() resolved');
15087
15085
  }))
15088
15086
  .catch((error) => {
15089
- logErrorAndThrow(WcmeErrorType.CREATE_OFFER_FAILED, `Error ${error}. SDP: ${maskIp(answer)}`);
15087
+ logErrorAndThrow(WcmeErrorType.CREATE_OFFER_FAILED, `Error: ${error}. SDP: ${maskIp(answer)}`);
15090
15088
  });
15091
15089
  });
15092
15090
  }