@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/cjs/index.js
CHANGED
|
@@ -9210,7 +9210,9 @@ class SsrcIngressStreamSignaler {
|
|
|
9210
9210
|
mLine.addLine(new SsrcLine(this.ssrc, 'cname', `${this.ssrc}-cname`));
|
|
9211
9211
|
mLine.addLine(new SsrcLine(this.ssrc, 'msid', '-', '1'));
|
|
9212
9212
|
if (hasCodec('rtx', mLine)) {
|
|
9213
|
-
this.rtxSsrc
|
|
9213
|
+
if (!this.rtxSsrc) {
|
|
9214
|
+
this.rtxSsrc = generateSsrc();
|
|
9215
|
+
}
|
|
9214
9216
|
mLine.addLine(new SsrcLine(this.rtxSsrc, 'cname', `${this.ssrc}-cname`));
|
|
9215
9217
|
mLine.addLine(new SsrcLine(this.rtxSsrc, 'msid', '-', '1'));
|
|
9216
9218
|
mLine.addLine(new SsrcGroupLine('FID', [this.ssrc, this.rtxSsrc]));
|