@webex/web-client-media-engine 1.40.5 → 1.40.6
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 +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -9206,7 +9206,9 @@ class SsrcIngressStreamSignaler {
|
|
|
9206
9206
|
mLine.addLine(new SsrcLine(this.ssrc, 'cname', `${this.ssrc}-cname`));
|
|
9207
9207
|
mLine.addLine(new SsrcLine(this.ssrc, 'msid', '-', '1'));
|
|
9208
9208
|
if (hasCodec('rtx', mLine)) {
|
|
9209
|
-
this.rtxSsrc
|
|
9209
|
+
if (!this.rtxSsrc) {
|
|
9210
|
+
this.rtxSsrc = generateSsrc();
|
|
9211
|
+
}
|
|
9210
9212
|
mLine.addLine(new SsrcLine(this.rtxSsrc, 'cname', `${this.ssrc}-cname`));
|
|
9211
9213
|
mLine.addLine(new SsrcLine(this.rtxSsrc, 'msid', '-', '1'));
|
|
9212
9214
|
mLine.addLine(new SsrcGroupLine('FID', [this.ssrc, this.rtxSsrc]));
|