@webex/web-client-media-engine 3.15.5 → 3.15.7
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 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -9557,6 +9557,7 @@ function matchMediaDescriptionsInAnswer(parsedOffer, parsedAnswer) {
|
|
|
9557
9557
|
const fakeCorrespondingDescription = deepCopy(startingMediaDescription);
|
|
9558
9558
|
fakeCorrespondingDescription.mid = offerMediaDescription.mid;
|
|
9559
9559
|
fakeCorrespondingDescription.simulcast = undefined;
|
|
9560
|
+
fakeCorrespondingDescription.bandwidth = undefined;
|
|
9560
9561
|
if (offerMediaDescription.direction === 'sendrecv' ||
|
|
9561
9562
|
offerMediaDescription.direction === 'sendonly') {
|
|
9562
9563
|
fakeCorrespondingDescription.direction = 'recvonly';
|
|
@@ -9771,6 +9772,7 @@ class EgressSdpMunger {
|
|
|
9771
9772
|
if (retainCandidates(mediaDescription, ['udp', 'tcp'])) {
|
|
9772
9773
|
logger.log(`Some unsupported remote candidates have been removed from mid ${mediaDescription.mid}`);
|
|
9773
9774
|
}
|
|
9775
|
+
mediaDescription.bandwidth = undefined;
|
|
9774
9776
|
[...mediaDescription.codecs.values()].forEach((ci) => {
|
|
9775
9777
|
ci.fmtParams.set('x-google-start-bitrate', '60000');
|
|
9776
9778
|
});
|