@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/cjs/index.js +1 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +5 -5
package/dist/cjs/index.js
CHANGED
|
@@ -1417,6 +1417,7 @@ class _LocalStream extends Stream {
|
|
|
1417
1417
|
stop() {
|
|
1418
1418
|
this.inputTrack.stop();
|
|
1419
1419
|
this.outputTrack.stop();
|
|
1420
|
+
this.disposeEffects();
|
|
1420
1421
|
// calling stop() will not automatically emit Ended, so we emit it here
|
|
1421
1422
|
this[exports.StreamEventNames.Ended].emit();
|
|
1422
1423
|
}
|
|
@@ -9678,7 +9679,6 @@ class EgressSdpMunger {
|
|
|
9678
9679
|
if (mediaDescription.codecs.size === 0) {
|
|
9679
9680
|
logErrorAndThrow(exports.WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
|
|
9680
9681
|
}
|
|
9681
|
-
mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
|
|
9682
9682
|
mediaDescription.rids = [];
|
|
9683
9683
|
mediaDescription.simulcast = undefined;
|
|
9684
9684
|
removeMidRidExtensions(mediaDescription);
|
|
@@ -10284,7 +10284,6 @@ class IngressSdpMunger {
|
|
|
10284
10284
|
if (mediaDescription.codecs.size === 0) {
|
|
10285
10285
|
logErrorAndThrow(exports.WcmeErrorType.SDP_MUNGE_MISSING_CODECS, `No codecs present in m-line with MID ${mediaDescription.mid} after filtering.`);
|
|
10286
10286
|
}
|
|
10287
|
-
mediaDescription.bandwidth = new BandwidthLine('TIAS', 20000000);
|
|
10288
10287
|
removeMidRidExtensions(mediaDescription);
|
|
10289
10288
|
if (options.twccDisabled) {
|
|
10290
10289
|
disableTwcc(mediaDescription);
|