@webex/web-client-media-engine 2.1.0 → 2.1.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 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -9428,7 +9428,8 @@ class SsrcIngressStreamSignaler {
|
|
|
9428
9428
|
getReceiverId() {
|
|
9429
9429
|
return Object.assign({ ssrc: this.ssrc }, (this.rtxSsrc ? { rtxSsrc: this.rtxSsrc } : {}));
|
|
9430
9430
|
}
|
|
9431
|
-
signalLocalStreams(
|
|
9431
|
+
signalLocalStreams(mLine) {
|
|
9432
|
+
mLine.extMaps = mLine.extMaps.filter((extMapLine) => !/^urn:ietf:params:rtp-hdrext:sdes:(?:mid|rtp-stream-id|repaired-rtp-stream-id)$/.test(extMapLine.uri));
|
|
9432
9433
|
}
|
|
9433
9434
|
signalRemoteStreams(mLine) {
|
|
9434
9435
|
mLine.addLine(new SsrcLine(this.ssrc, 'cname', `${this.ssrc}-cname`));
|