@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/esm/index.js
CHANGED
|
@@ -7956,10 +7956,12 @@ var rtcStats = function (pc, logger, intervalTime, statsPreProcessor) {
|
|
|
7956
7956
|
}
|
|
7957
7957
|
}
|
|
7958
7958
|
if (!_this.sctpEventsPreviouslyAdded) {
|
|
7959
|
-
_this.sctp
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
7959
|
+
if (_this.sctp) {
|
|
7960
|
+
_this.sctp.addEventListener('statechange', function () {
|
|
7961
|
+
trace('onsctpStateChange', makeEvent(_this.sctp.state));
|
|
7962
|
+
});
|
|
7963
|
+
_this.sctpEventsPreviouslyAdded = true;
|
|
7964
|
+
}
|
|
7963
7965
|
}
|
|
7964
7966
|
}
|
|
7965
7967
|
if (args.length >= 2 && typeof args[1] === 'function') {
|
|
@@ -14499,6 +14501,7 @@ class SendOnlyTransceiver extends Transceiver {
|
|
|
14499
14501
|
}
|
|
14500
14502
|
});
|
|
14501
14503
|
yield this.sender.setParameters(sendParameters);
|
|
14504
|
+
logger.log(`Sender parameters for ${this.mediaType} set to ${JSON.stringify(sendParameters)}`);
|
|
14502
14505
|
const timestamp = getCurrentTimestamp();
|
|
14503
14506
|
requestedIdEncodingParamsMap.forEach((_, index) => {
|
|
14504
14507
|
if (!this.requestedIdEncodingParamsMap.has(index)) {
|