@webex/web-client-media-engine 3.10.0 → 3.10.1
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 -2
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -9334,9 +9334,9 @@ function injectJmpAttributes(mediaDescription, csi, streamSignalingMode) {
|
|
|
9334
9334
|
}
|
|
9335
9335
|
function injectDummyCandidates(mediaDescription) {
|
|
9336
9336
|
if (mediaDescription.iceInfo.candidates.length === 0) {
|
|
9337
|
-
mediaDescription.addLine(new CandidateLine('dummy1', 1, 'udp',
|
|
9337
|
+
mediaDescription.addLine(new CandidateLine('dummy1', 1, 'udp', 3, '0.0.0.0', 9, 'host'));
|
|
9338
9338
|
mediaDescription.addLine(new CandidateLine('dummy2', 1, 'tcp', 2, '0.0.0.0', 9, 'host'));
|
|
9339
|
-
mediaDescription.addLine(new CandidateLine('dummy3', 1, 'udp',
|
|
9339
|
+
mediaDescription.addLine(new CandidateLine('dummy3', 1, 'udp', 1, '0.0.0.0', 9, 'relay'));
|
|
9340
9340
|
}
|
|
9341
9341
|
}
|
|
9342
9342
|
function removeMidRidExtensions(mediaDescription) {
|
package/dist/esm/index.js
CHANGED
|
@@ -9330,9 +9330,9 @@ function injectJmpAttributes(mediaDescription, csi, streamSignalingMode) {
|
|
|
9330
9330
|
}
|
|
9331
9331
|
function injectDummyCandidates(mediaDescription) {
|
|
9332
9332
|
if (mediaDescription.iceInfo.candidates.length === 0) {
|
|
9333
|
-
mediaDescription.addLine(new CandidateLine('dummy1', 1, 'udp',
|
|
9333
|
+
mediaDescription.addLine(new CandidateLine('dummy1', 1, 'udp', 3, '0.0.0.0', 9, 'host'));
|
|
9334
9334
|
mediaDescription.addLine(new CandidateLine('dummy2', 1, 'tcp', 2, '0.0.0.0', 9, 'host'));
|
|
9335
|
-
mediaDescription.addLine(new CandidateLine('dummy3', 1, 'udp',
|
|
9335
|
+
mediaDescription.addLine(new CandidateLine('dummy3', 1, 'udp', 1, '0.0.0.0', 9, 'relay'));
|
|
9336
9336
|
}
|
|
9337
9337
|
}
|
|
9338
9338
|
function removeMidRidExtensions(mediaDescription) {
|
package/package.json
CHANGED