@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/cjs/index.js +2 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -4
- package/dist/esm/index.js.map +1 -1
- package/package.json +4 -4
package/dist/cjs/index.js
CHANGED
|
@@ -9678,7 +9678,6 @@ class EgressSdpMunger {
|
|
|
9678
9678
|
if (mediaDescription.codecs.size === 0) {
|
|
9679
9679
|
logErrorAndThrow(exports.WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
|
|
9680
9680
|
}
|
|
9681
|
-
mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
|
|
9682
9681
|
mediaDescription.rids = [];
|
|
9683
9682
|
mediaDescription.simulcast = undefined;
|
|
9684
9683
|
removeMidRidExtensions(mediaDescription);
|
|
@@ -10284,7 +10283,6 @@ class IngressSdpMunger {
|
|
|
10284
10283
|
if (mediaDescription.codecs.size === 0) {
|
|
10285
10284
|
logErrorAndThrow(exports.WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
|
|
10286
10285
|
}
|
|
10287
|
-
mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
|
|
10288
10286
|
removeMidRidExtensions(mediaDescription);
|
|
10289
10287
|
if (options.twccDisabled) {
|
|
10290
10288
|
disableTwcc(mediaDescription);
|
|
@@ -15062,7 +15060,7 @@ SCTP Max Message Size: ${maxMessageSize}`);
|
|
|
15062
15060
|
}
|
|
15063
15061
|
}))
|
|
15064
15062
|
.catch((error) => {
|
|
15065
|
-
logErrorAndThrow(exports.WcmeErrorType.
|
|
15063
|
+
logErrorAndThrow(exports.WcmeErrorType.SET_ANSWER_FAILED, `Error: ${error}. SDP: ${maskIp(answer)}`);
|
|
15066
15064
|
});
|
|
15067
15065
|
});
|
|
15068
15066
|
}
|
|
@@ -15090,7 +15088,7 @@ SCTP Max Message Size: ${maxMessageSize}`);
|
|
|
15090
15088
|
logger.info('this.pc.setRemoteDescription() resolved');
|
|
15091
15089
|
}))
|
|
15092
15090
|
.catch((error) => {
|
|
15093
|
-
logErrorAndThrow(exports.WcmeErrorType.CREATE_OFFER_FAILED, `Error ${error}. SDP: ${maskIp(answer)}`);
|
|
15091
|
+
logErrorAndThrow(exports.WcmeErrorType.CREATE_OFFER_FAILED, `Error: ${error}. SDP: ${maskIp(answer)}`);
|
|
15094
15092
|
});
|
|
15095
15093
|
});
|
|
15096
15094
|
}
|