@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/cjs/index.js
CHANGED
|
@@ -9561,6 +9561,7 @@ function matchMediaDescriptionsInAnswer(parsedOffer, parsedAnswer) {
|
|
|
9561
9561
|
const fakeCorrespondingDescription = deepCopy(startingMediaDescription);
|
|
9562
9562
|
fakeCorrespondingDescription.mid = offerMediaDescription.mid;
|
|
9563
9563
|
fakeCorrespondingDescription.simulcast = undefined;
|
|
9564
|
+
fakeCorrespondingDescription.bandwidth = undefined;
|
|
9564
9565
|
if (offerMediaDescription.direction === 'sendrecv' ||
|
|
9565
9566
|
offerMediaDescription.direction === 'sendonly') {
|
|
9566
9567
|
fakeCorrespondingDescription.direction = 'recvonly';
|
|
@@ -9775,6 +9776,7 @@ class EgressSdpMunger {
|
|
|
9775
9776
|
if (retainCandidates(mediaDescription, ['udp', 'tcp'])) {
|
|
9776
9777
|
logger.log(`Some unsupported remote candidates have been removed from mid ${mediaDescription.mid}`);
|
|
9777
9778
|
}
|
|
9779
|
+
mediaDescription.bandwidth = undefined;
|
|
9778
9780
|
[...mediaDescription.codecs.values()].forEach((ci) => {
|
|
9779
9781
|
ci.fmtParams.set('x-google-start-bitrate', '60000');
|
|
9780
9782
|
});
|