@webex/plugin-meetings 3.10.0-set-bitrate.1 → 3.10.0-set-bitrate.2
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/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +37 -28
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/meeting/index.d.ts +1 -0
- package/dist/webinar/index.js +1 -1
- package/package.json +3 -3
- package/src/meeting/index.ts +10 -1
|
@@ -209,7 +209,7 @@ var Breakout = _webexCore.WebexPlugin.extend({
|
|
|
209
209
|
sessionId: this.sessionId
|
|
210
210
|
});
|
|
211
211
|
},
|
|
212
|
-
version: "3.10.0-set-bitrate.
|
|
212
|
+
version: "3.10.0-set-bitrate.2"
|
|
213
213
|
});
|
|
214
214
|
var _default = exports.default = Breakout;
|
|
215
215
|
//# sourceMappingURL=breakout.js.map
|
package/dist/breakouts/index.js
CHANGED
|
@@ -1109,7 +1109,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
|
1109
1109
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
|
1110
1110
|
}
|
|
1111
1111
|
},
|
|
1112
|
-
version: "3.10.0-set-bitrate.
|
|
1112
|
+
version: "3.10.0-set-bitrate.2"
|
|
1113
1113
|
});
|
|
1114
1114
|
var _default = exports.default = Breakouts;
|
|
1115
1115
|
//# sourceMappingURL=index.js.map
|
|
@@ -372,7 +372,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
|
372
372
|
throw error;
|
|
373
373
|
});
|
|
374
374
|
},
|
|
375
|
-
version: "3.10.0-set-bitrate.
|
|
375
|
+
version: "3.10.0-set-bitrate.2"
|
|
376
376
|
});
|
|
377
377
|
var _default = exports.default = SimultaneousInterpretation;
|
|
378
378
|
//# sourceMappingURL=index.js.map
|
|
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
|
|
|
18
18
|
languageCode: 'number',
|
|
19
19
|
languageName: 'string'
|
|
20
20
|
},
|
|
21
|
-
version: "3.10.0-set-bitrate.
|
|
21
|
+
version: "3.10.0-set-bitrate.2"
|
|
22
22
|
});
|
|
23
23
|
var _default = exports.default = SILanguage;
|
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/meeting/index.js
CHANGED
|
@@ -498,6 +498,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
498
498
|
(0, _defineProperty3.default)(_this, "localAudioStreamMuteStateHandler", void 0);
|
|
499
499
|
(0, _defineProperty3.default)(_this, "localVideoStreamMuteStateHandler", void 0);
|
|
500
500
|
(0, _defineProperty3.default)(_this, "localOutputTrackChangeHandler", void 0);
|
|
501
|
+
(0, _defineProperty3.default)(_this, "localConstraintsChangeHandler", void 0);
|
|
501
502
|
(0, _defineProperty3.default)(_this, "roles", void 0);
|
|
502
503
|
(0, _defineProperty3.default)(_this, "environment", void 0);
|
|
503
504
|
(0, _defineProperty3.default)(_this, "namespace", _constants.MEETINGS);
|
|
@@ -2224,6 +2225,12 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2224
2225
|
_this.updateTranscodedMediaConnection();
|
|
2225
2226
|
}
|
|
2226
2227
|
};
|
|
2228
|
+
_this.localConstraintsChangeHandler = function () {
|
|
2229
|
+
if (!_this.isMultistream) {
|
|
2230
|
+
var _this$mediaProperties6;
|
|
2231
|
+
(_this$mediaProperties6 = _this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties6 === void 0 ? void 0 : _this$mediaProperties6.updatePreferredBitrateKbps();
|
|
2232
|
+
}
|
|
2233
|
+
};
|
|
2227
2234
|
|
|
2228
2235
|
/**
|
|
2229
2236
|
* Promise that exists if SDP offer has been generated, and resolves once sdp answer is received.
|
|
@@ -5159,10 +5166,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5159
5166
|
key: "closeRemoteStreams",
|
|
5160
5167
|
value: function closeRemoteStreams() {
|
|
5161
5168
|
var _this24 = this;
|
|
5162
|
-
var _this$
|
|
5163
|
-
remoteAudioStream = _this$
|
|
5164
|
-
remoteVideoStream = _this$
|
|
5165
|
-
remoteShareStream = _this$
|
|
5169
|
+
var _this$mediaProperties7 = this.mediaProperties,
|
|
5170
|
+
remoteAudioStream = _this$mediaProperties7.remoteAudioStream,
|
|
5171
|
+
remoteVideoStream = _this$mediaProperties7.remoteVideoStream,
|
|
5172
|
+
remoteShareStream = _this$mediaProperties7.remoteShareStream;
|
|
5166
5173
|
|
|
5167
5174
|
/**
|
|
5168
5175
|
* Triggers an event to the developer
|
|
@@ -5264,13 +5271,14 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5264
5271
|
oldStream === null || oldStream === void 0 ? void 0 : oldStream.off(_mediaHelpers.LocalStreamEventNames.UserMuteStateChange, this.localVideoStreamMuteStateHandler);
|
|
5265
5272
|
oldStream === null || oldStream === void 0 ? void 0 : oldStream.off(_mediaHelpers.LocalStreamEventNames.SystemMuteStateChange, this.localVideoStreamMuteStateHandler);
|
|
5266
5273
|
oldStream === null || oldStream === void 0 ? void 0 : oldStream.off(_mediaHelpers.LocalStreamEventNames.OutputTrackChange, this.localOutputTrackChangeHandler);
|
|
5267
|
-
|
|
5274
|
+
oldStream === null || oldStream === void 0 ? void 0 : oldStream.off(_mediaHelpers.LocalStreamEventNames.ConstraintsChange, this.localConstraintsChangeHandler);
|
|
5268
5275
|
// we don't update this.mediaProperties.mediaDirection.sendVideo, because we always keep it as true to avoid extra SDP exchanges
|
|
5269
5276
|
this.mediaProperties.setLocalVideoStream(localStream);
|
|
5270
5277
|
(_this$video2 = this.video) === null || _this$video2 === void 0 ? void 0 : _this$video2.handleLocalStreamChange(this);
|
|
5271
5278
|
localStream === null || localStream === void 0 ? void 0 : localStream.on(_mediaHelpers.LocalStreamEventNames.UserMuteStateChange, this.localVideoStreamMuteStateHandler);
|
|
5272
5279
|
localStream === null || localStream === void 0 ? void 0 : localStream.on(_mediaHelpers.LocalStreamEventNames.SystemMuteStateChange, this.localVideoStreamMuteStateHandler);
|
|
5273
5280
|
localStream === null || localStream === void 0 ? void 0 : localStream.on(_mediaHelpers.LocalStreamEventNames.OutputTrackChange, this.localOutputTrackChangeHandler);
|
|
5281
|
+
localStream === null || localStream === void 0 ? void 0 : localStream.on(_mediaHelpers.LocalStreamEventNames.ConstraintsChange, this.localConstraintsChangeHandler);
|
|
5274
5282
|
if (!(!this.isMultistream || !localStream)) {
|
|
5275
5283
|
_context11.next = 1;
|
|
5276
5284
|
break;
|
|
@@ -5414,17 +5422,18 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5414
5422
|
}, {
|
|
5415
5423
|
key: "cleanupLocalStreams",
|
|
5416
5424
|
value: function cleanupLocalStreams() {
|
|
5417
|
-
var _this$
|
|
5418
|
-
audioStream = _this$
|
|
5419
|
-
videoStream = _this$
|
|
5420
|
-
shareAudioStream = _this$
|
|
5421
|
-
shareVideoStream = _this$
|
|
5425
|
+
var _this$mediaProperties8 = this.mediaProperties,
|
|
5426
|
+
audioStream = _this$mediaProperties8.audioStream,
|
|
5427
|
+
videoStream = _this$mediaProperties8.videoStream,
|
|
5428
|
+
shareAudioStream = _this$mediaProperties8.shareAudioStream,
|
|
5429
|
+
shareVideoStream = _this$mediaProperties8.shareVideoStream;
|
|
5422
5430
|
audioStream === null || audioStream === void 0 ? void 0 : audioStream.off(_mediaHelpers.LocalStreamEventNames.UserMuteStateChange, this.localAudioStreamMuteStateHandler);
|
|
5423
5431
|
audioStream === null || audioStream === void 0 ? void 0 : audioStream.off(_mediaHelpers.LocalStreamEventNames.SystemMuteStateChange, this.localAudioStreamMuteStateHandler);
|
|
5424
5432
|
audioStream === null || audioStream === void 0 ? void 0 : audioStream.off(_mediaHelpers.LocalStreamEventNames.OutputTrackChange, this.localOutputTrackChangeHandler);
|
|
5425
5433
|
videoStream === null || videoStream === void 0 ? void 0 : videoStream.off(_mediaHelpers.LocalStreamEventNames.UserMuteStateChange, this.localVideoStreamMuteStateHandler);
|
|
5426
5434
|
videoStream === null || videoStream === void 0 ? void 0 : videoStream.off(_mediaHelpers.LocalStreamEventNames.SystemMuteStateChange, this.localVideoStreamMuteStateHandler);
|
|
5427
5435
|
videoStream === null || videoStream === void 0 ? void 0 : videoStream.off(_mediaHelpers.LocalStreamEventNames.OutputTrackChange, this.localOutputTrackChangeHandler);
|
|
5436
|
+
videoStream === null || videoStream === void 0 ? void 0 : videoStream.off(_mediaHelpers.LocalStreamEventNames.ConstraintsChange, this.localConstraintsChangeHandler);
|
|
5428
5437
|
shareAudioStream === null || shareAudioStream === void 0 ? void 0 : shareAudioStream.off(_mediaHelpers.StreamEventNames.Ended, this.handleShareAudioStreamEnded);
|
|
5429
5438
|
shareAudioStream === null || shareAudioStream === void 0 ? void 0 : shareAudioStream.off(_mediaHelpers.LocalStreamEventNames.OutputTrackChange, this.localOutputTrackChangeHandler);
|
|
5430
5439
|
shareVideoStream === null || shareVideoStream === void 0 ? void 0 : shareVideoStream.off(_mediaHelpers.LocalStreamEventNames.SystemMuteStateChange, this.handleShareVideoStreamMuteStateChange);
|
|
@@ -7074,7 +7083,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7074
7083
|
key: "waitForMediaConnectionConnected",
|
|
7075
7084
|
value: (function () {
|
|
7076
7085
|
var _waitForMediaConnectionConnected = (0, _asyncToGenerator2.default)(/*#__PURE__*/_regenerator.default.mark(function _callee22() {
|
|
7077
|
-
var iceConnected, _this$
|
|
7086
|
+
var iceConnected, _this$mediaProperties9, _this$mediaProperties0, _this$mediaProperties1, _this$mediaProperties10, _this$mediaProperties11, _this$mediaProperties12, _this$mediaProperties13, timedOutError, _t13, _t14, _t15, _t16, _t17, _t18, _t19, _t20, _t21, _t22, _t23, _t24, _t25, _t26, _t27;
|
|
7078
7087
|
return _regenerator.default.wrap(function (_context22) {
|
|
7079
7088
|
while (1) switch (_context22.prev = _context22.next) {
|
|
7080
7089
|
case 0:
|
|
@@ -7097,7 +7106,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7097
7106
|
_t16 = this.addMediaData.icePhaseCallback();
|
|
7098
7107
|
_t17 = this.webex.internal.newMetrics.callDiagnosticMetrics;
|
|
7099
7108
|
_t18 = _internalPluginMetrics.CallDiagnosticUtils;
|
|
7100
|
-
_t19 = ((_this$
|
|
7109
|
+
_t19 = ((_this$mediaProperties9 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties9 === void 0 ? void 0 : (_this$mediaProperties0 = _this$mediaProperties9.multistreamConnection) === null || _this$mediaProperties0 === void 0 ? void 0 : (_this$mediaProperties1 = _this$mediaProperties0.pc) === null || _this$mediaProperties1 === void 0 ? void 0 : (_this$mediaProperties10 = _this$mediaProperties1.pc) === null || _this$mediaProperties10 === void 0 ? void 0 : _this$mediaProperties10.signalingState) || ((_this$mediaProperties11 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties11 === void 0 ? void 0 : (_this$mediaProperties12 = _this$mediaProperties11.mediaConnection) === null || _this$mediaProperties12 === void 0 ? void 0 : (_this$mediaProperties13 = _this$mediaProperties12.pc) === null || _this$mediaProperties13 === void 0 ? void 0 : _this$mediaProperties13.signalingState) || 'unknown';
|
|
7101
7110
|
_t20 = iceConnected;
|
|
7102
7111
|
_t21 = this.turnServerUsed;
|
|
7103
7112
|
_context22.next = 3;
|
|
@@ -7808,7 +7817,6 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7808
7817
|
numTransports,
|
|
7809
7818
|
iceCandidateErrors,
|
|
7810
7819
|
reachabilityMetrics,
|
|
7811
|
-
_this$mediaProperties13,
|
|
7812
7820
|
_this$mediaProperties14,
|
|
7813
7821
|
_this$mediaProperties15,
|
|
7814
7822
|
_this$mediaProperties16,
|
|
@@ -7829,6 +7837,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
7829
7837
|
_this$mediaProperties31,
|
|
7830
7838
|
_this$mediaProperties32,
|
|
7831
7839
|
_this$mediaProperties33,
|
|
7840
|
+
_this$mediaProperties34,
|
|
7832
7841
|
_reachabilityMetrics,
|
|
7833
7842
|
_yield$this$mediaProp2,
|
|
7834
7843
|
_selectedCandidatePairChanges,
|
|
@@ -8028,9 +8037,9 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
8028
8037
|
retriedWithTurnServer: this.addMediaData.retriedWithTurnServer,
|
|
8029
8038
|
isMultistream: this.isMultistream,
|
|
8030
8039
|
isJoinWithMediaRetry: this.joinWithMediaRetryInfo.isRetry,
|
|
8031
|
-
signalingState: ((_this$
|
|
8032
|
-
connectionState: ((_this$
|
|
8033
|
-
iceConnectionState: ((_this$
|
|
8040
|
+
signalingState: ((_this$mediaProperties14 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties14 === void 0 ? void 0 : (_this$mediaProperties15 = _this$mediaProperties14.multistreamConnection) === null || _this$mediaProperties15 === void 0 ? void 0 : (_this$mediaProperties16 = _this$mediaProperties15.pc) === null || _this$mediaProperties16 === void 0 ? void 0 : (_this$mediaProperties17 = _this$mediaProperties16.pc) === null || _this$mediaProperties17 === void 0 ? void 0 : _this$mediaProperties17.signalingState) || ((_this$mediaProperties18 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties18 === void 0 ? void 0 : (_this$mediaProperties19 = _this$mediaProperties18.mediaConnection) === null || _this$mediaProperties19 === void 0 ? void 0 : (_this$mediaProperties20 = _this$mediaProperties19.pc) === null || _this$mediaProperties20 === void 0 ? void 0 : _this$mediaProperties20.signalingState) || 'unknown',
|
|
8041
|
+
connectionState: ((_this$mediaProperties21 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties21 === void 0 ? void 0 : (_this$mediaProperties22 = _this$mediaProperties21.multistreamConnection) === null || _this$mediaProperties22 === void 0 ? void 0 : (_this$mediaProperties23 = _this$mediaProperties22.pc) === null || _this$mediaProperties23 === void 0 ? void 0 : (_this$mediaProperties24 = _this$mediaProperties23.pc) === null || _this$mediaProperties24 === void 0 ? void 0 : _this$mediaProperties24.connectionState) || ((_this$mediaProperties25 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties25 === void 0 ? void 0 : (_this$mediaProperties26 = _this$mediaProperties25.mediaConnection) === null || _this$mediaProperties26 === void 0 ? void 0 : (_this$mediaProperties27 = _this$mediaProperties26.pc) === null || _this$mediaProperties27 === void 0 ? void 0 : _this$mediaProperties27.connectionState) || 'unknown',
|
|
8042
|
+
iceConnectionState: ((_this$mediaProperties28 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties28 === void 0 ? void 0 : (_this$mediaProperties29 = _this$mediaProperties28.multistreamConnection) === null || _this$mediaProperties29 === void 0 ? void 0 : (_this$mediaProperties30 = _this$mediaProperties29.pc) === null || _this$mediaProperties30 === void 0 ? void 0 : (_this$mediaProperties31 = _this$mediaProperties30.pc) === null || _this$mediaProperties31 === void 0 ? void 0 : _this$mediaProperties31.iceConnectionState) || ((_this$mediaProperties32 = this.mediaProperties.webrtcMediaConnection) === null || _this$mediaProperties32 === void 0 ? void 0 : (_this$mediaProperties33 = _this$mediaProperties32.mediaConnection) === null || _this$mediaProperties33 === void 0 ? void 0 : (_this$mediaProperties34 = _this$mediaProperties33.pc) === null || _this$mediaProperties34 === void 0 ? void 0 : _this$mediaProperties34.iceConnectionState) || 'unknown'
|
|
8034
8043
|
}, _reachabilityMetrics), _iceCandidateErrors), {}, {
|
|
8035
8044
|
iceCandidatesCount: this.iceCandidatesCount,
|
|
8036
8045
|
ipver: ipver
|
|
@@ -8835,10 +8844,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
8835
8844
|
var renderInfo = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
8836
8845
|
var main = renderInfo.main,
|
|
8837
8846
|
content = renderInfo.content;
|
|
8838
|
-
var _this$
|
|
8839
|
-
mediaDirection = _this$
|
|
8840
|
-
remoteShareStream = _this$
|
|
8841
|
-
remoteVideoStream = _this$
|
|
8847
|
+
var _this$mediaProperties35 = this.mediaProperties,
|
|
8848
|
+
mediaDirection = _this$mediaProperties35.mediaDirection,
|
|
8849
|
+
remoteShareStream = _this$mediaProperties35.remoteShareStream,
|
|
8850
|
+
remoteVideoStream = _this$mediaProperties35.remoteVideoStream;
|
|
8842
8851
|
var layoutInfo = (0, _lodash.cloneDeep)(this.lastVideoLayoutInfo);
|
|
8843
8852
|
|
|
8844
8853
|
// TODO: We need a real time value for Audio, Video and Share send indicator
|
|
@@ -9159,8 +9168,8 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
9159
9168
|
}, {
|
|
9160
9169
|
key: "checkMediaConnection",
|
|
9161
9170
|
value: function checkMediaConnection() {
|
|
9162
|
-
var _this$
|
|
9163
|
-
if ((_this$
|
|
9171
|
+
var _this$mediaProperties36;
|
|
9172
|
+
if ((_this$mediaProperties36 = this.mediaProperties) !== null && _this$mediaProperties36 !== void 0 && _this$mediaProperties36.webrtcMediaConnection) {
|
|
9164
9173
|
return;
|
|
9165
9174
|
}
|
|
9166
9175
|
throw new _webexErrors.NoMediaEstablishedYetError();
|
|
@@ -9220,14 +9229,14 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
9220
9229
|
}, {
|
|
9221
9230
|
key: "updateTranscodedMediaConnection",
|
|
9222
9231
|
value: function updateTranscodedMediaConnection() {
|
|
9223
|
-
var _this$
|
|
9224
|
-
_this$mediaProperties37,
|
|
9232
|
+
var _this$mediaProperties37,
|
|
9225
9233
|
_this$mediaProperties38,
|
|
9226
9234
|
_this$mediaProperties39,
|
|
9227
9235
|
_this$mediaProperties40,
|
|
9228
9236
|
_this$mediaProperties41,
|
|
9229
9237
|
_this$mediaProperties42,
|
|
9230
9238
|
_this$mediaProperties43,
|
|
9239
|
+
_this$mediaProperties44,
|
|
9231
9240
|
_this56 = this;
|
|
9232
9241
|
var LOG_HEADER = 'Meeting:index#updateTranscodedMediaConnection -->';
|
|
9233
9242
|
_loggerProxy.default.logger.info("".concat(LOG_HEADER, " starting"));
|
|
@@ -9237,10 +9246,10 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
9237
9246
|
return this.mediaProperties.webrtcMediaConnection.update({
|
|
9238
9247
|
// TODO: RoapMediaConnection is not ready to use stream classes yet, so we pass the raw MediaStreamTrack for now
|
|
9239
9248
|
localTracks: {
|
|
9240
|
-
audio: ((_this$
|
|
9241
|
-
video: ((_this$
|
|
9242
|
-
screenShareVideo: ((_this$
|
|
9243
|
-
screenShareAudio: ((_this$
|
|
9249
|
+
audio: ((_this$mediaProperties37 = this.mediaProperties.audioStream) === null || _this$mediaProperties37 === void 0 ? void 0 : (_this$mediaProperties38 = _this$mediaProperties37.outputStream) === null || _this$mediaProperties38 === void 0 ? void 0 : _this$mediaProperties38.getTracks()[0]) || null,
|
|
9250
|
+
video: ((_this$mediaProperties39 = this.mediaProperties.videoStream) === null || _this$mediaProperties39 === void 0 ? void 0 : (_this$mediaProperties40 = _this$mediaProperties39.outputStream) === null || _this$mediaProperties40 === void 0 ? void 0 : _this$mediaProperties40.getTracks()[0]) || null,
|
|
9251
|
+
screenShareVideo: ((_this$mediaProperties41 = this.mediaProperties.shareVideoStream) === null || _this$mediaProperties41 === void 0 ? void 0 : (_this$mediaProperties42 = _this$mediaProperties41.outputStream) === null || _this$mediaProperties42 === void 0 ? void 0 : _this$mediaProperties42.getTracks()[0]) || null,
|
|
9252
|
+
screenShareAudio: ((_this$mediaProperties43 = this.mediaProperties.shareAudioStream) === null || _this$mediaProperties43 === void 0 ? void 0 : (_this$mediaProperties44 = _this$mediaProperties43.outputStream) === null || _this$mediaProperties44 === void 0 ? void 0 : _this$mediaProperties44.getTracks()[0]) || null
|
|
9244
9253
|
},
|
|
9245
9254
|
direction: {
|
|
9246
9255
|
audio: _media.default.getDirection(true, this.mediaProperties.mediaDirection.receiveAudio, this.mediaProperties.mediaDirection.sendAudio),
|