@webex/web-client-media-engine 3.20.1 → 3.20.3
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 +7 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +7 -4
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
|
@@ -7960,10 +7960,12 @@ var rtcStats = function (pc, logger, intervalTime, statsPreProcessor) {
|
|
|
7960
7960
|
}
|
|
7961
7961
|
}
|
|
7962
7962
|
if (!_this.sctpEventsPreviouslyAdded) {
|
|
7963
|
-
_this.sctp
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7963
|
+
if (_this.sctp) {
|
|
7964
|
+
_this.sctp.addEventListener('statechange', function () {
|
|
7965
|
+
trace('onsctpStateChange', makeEvent(_this.sctp.state));
|
|
7966
|
+
});
|
|
7967
|
+
_this.sctpEventsPreviouslyAdded = true;
|
|
7968
|
+
}
|
|
7967
7969
|
}
|
|
7968
7970
|
}
|
|
7969
7971
|
if (args.length >= 2 && typeof args[1] === 'function') {
|
|
@@ -14503,6 +14505,7 @@ class SendOnlyTransceiver extends Transceiver {
|
|
|
14503
14505
|
}
|
|
14504
14506
|
});
|
|
14505
14507
|
yield this.sender.setParameters(sendParameters);
|
|
14508
|
+
logger.log(`Sender parameters for ${this.mediaType} set to ${JSON.stringify(sendParameters)}`);
|
|
14506
14509
|
const timestamp = getCurrentTimestamp();
|
|
14507
14510
|
requestedIdEncodingParamsMap.forEach((_, index) => {
|
|
14508
14511
|
if (!this.requestedIdEncodingParamsMap.has(index)) {
|