@webex/plugin-meetings 3.8.0-next.57 → 3.8.0-next.59
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/constants.js +1 -120
- package/dist/constants.js.map +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/selfUtils.js +405 -418
- package/dist/locus-info/selfUtils.js.map +1 -1
- package/dist/meeting/index.js +15 -13
- package/dist/meeting/index.js.map +1 -1
- package/dist/types/constants.d.ts +0 -85
- package/dist/types/locus-info/selfUtils.d.ts +247 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +5 -5
- package/src/constants.ts +0 -90
- package/src/locus-info/selfUtils.ts +451 -447
- package/src/meeting/index.ts +14 -15
- package/test/unit/spec/meeting/index.js +22 -25
@@ -956,91 +956,6 @@ export declare const NETWORK_STATUS: {
|
|
956
956
|
readonly CONNECTED: "CONNECTED";
|
957
957
|
};
|
958
958
|
export type NETWORK_STATUS = Enum<typeof NETWORK_STATUS>;
|
959
|
-
export declare const NETWORK_TYPE: {
|
960
|
-
VPN: string;
|
961
|
-
UNKNOWN: string;
|
962
|
-
WIFI: string;
|
963
|
-
ETHERNET: string;
|
964
|
-
};
|
965
|
-
export declare const STATS: {
|
966
|
-
SEND_DIRECTION: string;
|
967
|
-
RECEIVE_DIRECTION: string;
|
968
|
-
REMOTE: string;
|
969
|
-
LOCAL: string;
|
970
|
-
};
|
971
|
-
export declare const MQA_STATS: {
|
972
|
-
MQA_SIZE: number;
|
973
|
-
CA_TYPE: string;
|
974
|
-
DEFAULT_IP: string;
|
975
|
-
DEFAULT_SHARE_SENDER_STATS: {
|
976
|
-
common: {
|
977
|
-
common: {
|
978
|
-
direction: string;
|
979
|
-
isMain: boolean;
|
980
|
-
mariFecEnabled: boolean;
|
981
|
-
mariRtxEnabled: boolean;
|
982
|
-
mariLiteEnabled: boolean;
|
983
|
-
mariQosEnabled: boolean;
|
984
|
-
multistreamEnabled: boolean;
|
985
|
-
};
|
986
|
-
availableBitrate: number;
|
987
|
-
dtlsBitrate: number;
|
988
|
-
dtlsPackets: number;
|
989
|
-
fecBitrate: number;
|
990
|
-
fecPackets: number;
|
991
|
-
maxBitrate: number;
|
992
|
-
queueDelay: number;
|
993
|
-
remoteJitter: number;
|
994
|
-
remoteLossRate: number;
|
995
|
-
roundTripTime: number;
|
996
|
-
rtcpBitrate: number;
|
997
|
-
rtcpPackets: number;
|
998
|
-
rtpBitrate: number;
|
999
|
-
rtpPackets: number;
|
1000
|
-
stunBitrate: number;
|
1001
|
-
stunPackets: number;
|
1002
|
-
transportType: string;
|
1003
|
-
};
|
1004
|
-
streams: {
|
1005
|
-
common: {
|
1006
|
-
codec: string;
|
1007
|
-
duplicateSsci: number;
|
1008
|
-
requestedBitrate: number;
|
1009
|
-
requestedFrames: number;
|
1010
|
-
rtpPackets: number;
|
1011
|
-
ssci: number;
|
1012
|
-
transmittedBitrate: number;
|
1013
|
-
transmittedFrameRate: number;
|
1014
|
-
};
|
1015
|
-
h264CodecProfile: string;
|
1016
|
-
localConfigurationChanges: number;
|
1017
|
-
remoteConfigurationChanges: number;
|
1018
|
-
requestedFrameSize: number;
|
1019
|
-
requestedKeyFrames: number;
|
1020
|
-
transmittedFrameSize: number;
|
1021
|
-
transmittedHeight: number;
|
1022
|
-
transmittedKeyFrames: number;
|
1023
|
-
transmittedWidth: number;
|
1024
|
-
}[];
|
1025
|
-
};
|
1026
|
-
intervalMetadata: {
|
1027
|
-
memoryUsage: {
|
1028
|
-
cpuBitWidth: number;
|
1029
|
-
mainProcessMaximumMemoryBytes: number;
|
1030
|
-
osBitWidth: number;
|
1031
|
-
processAverageMemoryUsage: number;
|
1032
|
-
processMaximumMemoryBytes: number;
|
1033
|
-
processMaximumMemoryUsage: number;
|
1034
|
-
systemAverageMemoryUsage: number;
|
1035
|
-
systemMaximumMemoryUsage: number;
|
1036
|
-
};
|
1037
|
-
peerReflexiveIP: string;
|
1038
|
-
processAverageCPU: number;
|
1039
|
-
processMaximumCPU: number;
|
1040
|
-
systemAverageCPU: number;
|
1041
|
-
systemMaximumCPU: number;
|
1042
|
-
};
|
1043
|
-
};
|
1044
959
|
export declare const QUALITY_LEVELS: {
|
1045
960
|
LOW: string;
|
1046
961
|
MEDIUM: string;
|
@@ -1,2 +1,248 @@
|
|
1
|
-
declare const SelfUtils:
|
1
|
+
declare const SelfUtils: {
|
2
|
+
/**
|
3
|
+
* parses the relevant values for self: muted, guest, moderator, mediaStatus, state, joinedWith, pstnDevices, creator, id
|
4
|
+
* @param {Object} self
|
5
|
+
* @param {String} deviceId
|
6
|
+
* @returns {undefined}
|
7
|
+
*/
|
8
|
+
parse: (self: any, deviceId: string) => {
|
9
|
+
remoteVideoMuted: any;
|
10
|
+
remoteMuted: any;
|
11
|
+
unmuteAllowed: boolean;
|
12
|
+
localAudioUnmuteRequested: boolean;
|
13
|
+
localAudioUnmuteRequestedTimeStamp: number;
|
14
|
+
localAudioUnmuteRequired: boolean;
|
15
|
+
lastModified: any;
|
16
|
+
modifiedBy: any;
|
17
|
+
guest: any;
|
18
|
+
moderator: any;
|
19
|
+
mediaStatus: {
|
20
|
+
audio: any;
|
21
|
+
video: any;
|
22
|
+
slides: any;
|
23
|
+
};
|
24
|
+
state: any;
|
25
|
+
joinedWith: any;
|
26
|
+
pstnDevices: any;
|
27
|
+
currentMediaStatus: {
|
28
|
+
audio: any;
|
29
|
+
video: any;
|
30
|
+
share: any;
|
31
|
+
};
|
32
|
+
creator: any;
|
33
|
+
selfId: any;
|
34
|
+
selfIdentity: any;
|
35
|
+
selfUrl: any;
|
36
|
+
removed: any;
|
37
|
+
roles: any;
|
38
|
+
isUserUnadmitted: boolean;
|
39
|
+
layout: any;
|
40
|
+
canNotViewTheParticipantList: boolean;
|
41
|
+
isSharingBlocked: boolean;
|
42
|
+
breakoutSessions: any;
|
43
|
+
breakout: any;
|
44
|
+
interpretation: any;
|
45
|
+
brb: any;
|
46
|
+
};
|
47
|
+
getBreakoutSessions: (self: any) => any;
|
48
|
+
getBreakout: (self: any) => any;
|
49
|
+
getInterpretation: (self: any) => any;
|
50
|
+
getBrb: (self: any) => any;
|
51
|
+
getLayout: (self: any) => any;
|
52
|
+
getRoles: (self: any) => any;
|
53
|
+
canNotViewTheParticipantList: (self: any) => boolean;
|
54
|
+
isSharingBlocked: (self: any) => boolean;
|
55
|
+
getSelves: (oldSelf: any, newSelf: any, deviceId: any) => {
|
56
|
+
previous: {
|
57
|
+
remoteVideoMuted: any;
|
58
|
+
remoteMuted: any;
|
59
|
+
unmuteAllowed: boolean;
|
60
|
+
localAudioUnmuteRequested: boolean;
|
61
|
+
localAudioUnmuteRequestedTimeStamp: number;
|
62
|
+
localAudioUnmuteRequired: boolean;
|
63
|
+
lastModified: any;
|
64
|
+
modifiedBy: any;
|
65
|
+
guest: any;
|
66
|
+
moderator: any;
|
67
|
+
mediaStatus: {
|
68
|
+
audio: any;
|
69
|
+
video: any;
|
70
|
+
slides: any;
|
71
|
+
};
|
72
|
+
state: any;
|
73
|
+
joinedWith: any;
|
74
|
+
pstnDevices: any;
|
75
|
+
currentMediaStatus: {
|
76
|
+
audio: any;
|
77
|
+
video: any;
|
78
|
+
share: any;
|
79
|
+
};
|
80
|
+
creator: any;
|
81
|
+
selfId: any;
|
82
|
+
selfIdentity: any;
|
83
|
+
selfUrl: any;
|
84
|
+
removed: any;
|
85
|
+
roles: any;
|
86
|
+
isUserUnadmitted: boolean;
|
87
|
+
layout: any;
|
88
|
+
canNotViewTheParticipantList: boolean;
|
89
|
+
isSharingBlocked: boolean;
|
90
|
+
breakoutSessions: any;
|
91
|
+
breakout: any;
|
92
|
+
interpretation: any;
|
93
|
+
brb: any;
|
94
|
+
};
|
95
|
+
current: {
|
96
|
+
remoteVideoMuted: any;
|
97
|
+
remoteMuted: any;
|
98
|
+
unmuteAllowed: boolean;
|
99
|
+
localAudioUnmuteRequested: boolean;
|
100
|
+
localAudioUnmuteRequestedTimeStamp: number;
|
101
|
+
localAudioUnmuteRequired: boolean;
|
102
|
+
lastModified: any;
|
103
|
+
modifiedBy: any;
|
104
|
+
guest: any;
|
105
|
+
moderator: any;
|
106
|
+
mediaStatus: {
|
107
|
+
audio: any;
|
108
|
+
video: any;
|
109
|
+
slides: any;
|
110
|
+
};
|
111
|
+
state: any;
|
112
|
+
joinedWith: any;
|
113
|
+
pstnDevices: any;
|
114
|
+
currentMediaStatus: {
|
115
|
+
audio: any;
|
116
|
+
video: any;
|
117
|
+
share: any;
|
118
|
+
};
|
119
|
+
creator: any;
|
120
|
+
selfId: any;
|
121
|
+
selfIdentity: any;
|
122
|
+
selfUrl: any;
|
123
|
+
removed: any;
|
124
|
+
roles: any;
|
125
|
+
isUserUnadmitted: boolean;
|
126
|
+
layout: any;
|
127
|
+
canNotViewTheParticipantList: boolean;
|
128
|
+
isSharingBlocked: boolean;
|
129
|
+
breakoutSessions: any;
|
130
|
+
breakout: any;
|
131
|
+
interpretation: any;
|
132
|
+
brb: any;
|
133
|
+
};
|
134
|
+
updates: any;
|
135
|
+
};
|
136
|
+
/**
|
137
|
+
* Checks if user has joined the meeting
|
138
|
+
* @param {Object} self
|
139
|
+
* @returns {boolean} isJoined
|
140
|
+
*/
|
141
|
+
isJoined: (self: any) => boolean;
|
142
|
+
/**
|
143
|
+
* Validate if the Meeting Layout Controls Layout has changed.
|
144
|
+
*
|
145
|
+
* @param {Self} previous - Previous self state
|
146
|
+
* @param {Self} current - Current self state [per event]
|
147
|
+
* @returns {boolean} - If the Meeting Layout Controls Layout has changed.
|
148
|
+
*/
|
149
|
+
layoutChanged: (previous: any, current: any) => boolean;
|
150
|
+
breakoutsChanged: (previous: any, current: any) => boolean;
|
151
|
+
interpretationChanged: (previous: any, current: any) => boolean;
|
152
|
+
brbChanged: (previous: any, current: any) => boolean;
|
153
|
+
isMediaInactive: (previous: any, current: any) => boolean;
|
154
|
+
getLastModified: (self: any) => any;
|
155
|
+
getModifiedBy: (self: any) => any;
|
156
|
+
/**
|
157
|
+
* get the id from the self object
|
158
|
+
* @param {Object} self
|
159
|
+
* @returns {String}
|
160
|
+
*/
|
161
|
+
getSelfIdentity: (self: any) => any;
|
162
|
+
/**
|
163
|
+
* get the "remote video mute" property from the self object
|
164
|
+
* @param {Object} self
|
165
|
+
* @returns {Boolean}
|
166
|
+
*/
|
167
|
+
getRemoteVideoMuted: (self: any) => any;
|
168
|
+
/**
|
169
|
+
* get the "remote mute" property from the self object
|
170
|
+
* @param {Object} self
|
171
|
+
* @returns {Boolean}
|
172
|
+
*/
|
173
|
+
getRemoteMuted: (self: any) => any;
|
174
|
+
getLocalAudioUnmuteRequested: (self: any) => boolean;
|
175
|
+
getLocalAudioUnmuteRequestedTimeStamp: (self: any) => number;
|
176
|
+
getUnmuteAllowed: (self: any) => boolean;
|
177
|
+
getLocalAudioUnmuteRequired: (self: any) => boolean;
|
178
|
+
getStatus: (status: any) => {
|
179
|
+
audio: any;
|
180
|
+
video: any;
|
181
|
+
slides: any;
|
182
|
+
};
|
183
|
+
/**
|
184
|
+
* @param {Object} oldSelf
|
185
|
+
* @param {Object} changedSelf
|
186
|
+
* @returns {Boolean}
|
187
|
+
*/
|
188
|
+
wasMediaInactiveOrReleased: (oldSelf: any, changedSelf: any) => boolean;
|
189
|
+
/**
|
190
|
+
* @param {Object} check
|
191
|
+
* @returns {Boolean}
|
192
|
+
*/
|
193
|
+
isLocusUserUnadmitted: (check: any) => boolean;
|
194
|
+
/**
|
195
|
+
* @param {Object} check
|
196
|
+
* @returns {Boolean}
|
197
|
+
*/
|
198
|
+
isLocusUserAdmitted: (check: any) => boolean;
|
199
|
+
/**
|
200
|
+
* @param {Object} oldSelf
|
201
|
+
* @param {Object} changedSelf
|
202
|
+
* @returns {Boolean}
|
203
|
+
* @throws {Error} when self is undefined
|
204
|
+
*/
|
205
|
+
isUserUnadmitted: (oldSelf: any, changedSelf: any) => boolean;
|
206
|
+
moderatorChanged: (oldSelf: any, changedSelf: any) => boolean;
|
207
|
+
/**
|
208
|
+
* determine whether the roles of self is changed or not
|
209
|
+
* @param {Object} oldSelf
|
210
|
+
* @param {Object} changedSelf
|
211
|
+
* @returns {Boolean}
|
212
|
+
*/
|
213
|
+
isRolesChanged: (oldSelf: any, changedSelf: any) => boolean;
|
214
|
+
/**
|
215
|
+
* @param {Object} oldSelf
|
216
|
+
* @param {Object} changedSelf
|
217
|
+
* @returns {Boolean}
|
218
|
+
* @throws {Error} if changed self was undefined
|
219
|
+
*/
|
220
|
+
isDeviceObserving: (oldSelf: any, changedSelf: any) => boolean;
|
221
|
+
/**
|
222
|
+
* @param {Object} oldSelf
|
223
|
+
* @param {Object} changedSelf
|
224
|
+
* @returns {Boolean}
|
225
|
+
* @throws {Error} if changed self was undefined
|
226
|
+
*/
|
227
|
+
isUserAdmitted: (oldSelf: object, changedSelf: object) => boolean;
|
228
|
+
videoMutedByOthersChanged: (oldSelf: any, changedSelf: any) => boolean;
|
229
|
+
mutedByOthersChanged: (oldSelf: any, changedSelf: any) => boolean;
|
230
|
+
localAudioUnmuteRequestedByServer: (oldSelf: any, changedSelf: any) => boolean;
|
231
|
+
localAudioUnmuteRequiredByServer: (oldSelf: any, changedSelf: any) => boolean;
|
232
|
+
/**
|
233
|
+
* extract the sipUrl from the partner
|
234
|
+
* @param {Object} partner
|
235
|
+
* @param {Object} info
|
236
|
+
* @returns {Object}
|
237
|
+
*/
|
238
|
+
getSipUrl: (partner: any, type: any, sipUri: any) => {
|
239
|
+
sipUri: any;
|
240
|
+
};
|
241
|
+
getMediaStatus: (mediaSessions?: any[]) => {
|
242
|
+
audio: any;
|
243
|
+
video: any;
|
244
|
+
share: any;
|
245
|
+
};
|
246
|
+
getReplacedBreakoutMoveId: (self: any, deviceId: string) => any;
|
247
|
+
};
|
2
248
|
export default SelfUtils;
|
package/dist/webinar/index.js
CHANGED
package/package.json
CHANGED
@@ -43,7 +43,7 @@
|
|
43
43
|
"@webex/eslint-config-legacy": "0.0.0",
|
44
44
|
"@webex/jest-config-legacy": "0.0.0",
|
45
45
|
"@webex/legacy-tools": "0.0.0",
|
46
|
-
"@webex/plugin-meetings": "3.8.0-next.
|
46
|
+
"@webex/plugin-meetings": "3.8.0-next.59",
|
47
47
|
"@webex/plugin-rooms": "3.8.0-next.21",
|
48
48
|
"@webex/test-helper-chai": "3.8.0-next.17",
|
49
49
|
"@webex/test-helper-mocha": "3.8.0-next.17",
|
@@ -63,7 +63,7 @@
|
|
63
63
|
"dependencies": {
|
64
64
|
"@webex/common": "3.8.0-next.17",
|
65
65
|
"@webex/event-dictionary-ts": "^1.0.1753",
|
66
|
-
"@webex/internal-media-core": "2.
|
66
|
+
"@webex/internal-media-core": "2.16.0",
|
67
67
|
"@webex/internal-plugin-conversation": "3.8.0-next.21",
|
68
68
|
"@webex/internal-plugin-device": "3.8.0-next.17",
|
69
69
|
"@webex/internal-plugin-llm": "3.8.0-next.20",
|
@@ -71,8 +71,8 @@
|
|
71
71
|
"@webex/internal-plugin-metrics": "3.8.0-next.17",
|
72
72
|
"@webex/internal-plugin-support": "3.8.0-next.21",
|
73
73
|
"@webex/internal-plugin-user": "3.8.0-next.17",
|
74
|
-
"@webex/internal-plugin-voicea": "3.8.0-next.
|
75
|
-
"@webex/media-helpers": "3.8.0-next.
|
74
|
+
"@webex/internal-plugin-voicea": "3.8.0-next.59",
|
75
|
+
"@webex/media-helpers": "3.8.0-next.21",
|
76
76
|
"@webex/plugin-people": "3.8.0-next.19",
|
77
77
|
"@webex/plugin-rooms": "3.8.0-next.21",
|
78
78
|
"@webex/web-capabilities": "^1.4.0",
|
@@ -92,5 +92,5 @@
|
|
92
92
|
"//": [
|
93
93
|
"TODO: upgrade jwt-decode when moving to node 18"
|
94
94
|
],
|
95
|
-
"version": "3.8.0-next.
|
95
|
+
"version": "3.8.0-next.59"
|
96
96
|
}
|
package/src/constants.ts
CHANGED
@@ -1166,96 +1166,6 @@ export const NETWORK_STATUS = {
|
|
1166
1166
|
|
1167
1167
|
export type NETWORK_STATUS = Enum<typeof NETWORK_STATUS>;
|
1168
1168
|
|
1169
|
-
export const NETWORK_TYPE = {
|
1170
|
-
VPN: 'vpn',
|
1171
|
-
UNKNOWN: 'unknown',
|
1172
|
-
WIFI: 'wifi',
|
1173
|
-
ETHERNET: 'ethernet',
|
1174
|
-
};
|
1175
|
-
|
1176
|
-
export const STATS = {
|
1177
|
-
SEND_DIRECTION: 'send',
|
1178
|
-
RECEIVE_DIRECTION: 'recv',
|
1179
|
-
REMOTE: 'remote',
|
1180
|
-
LOCAL: 'local',
|
1181
|
-
};
|
1182
|
-
|
1183
|
-
export const MQA_STATS = {
|
1184
|
-
MQA_SIZE: 120, // MQA is done on 60 second intervals by server def, add a buffer for missed events
|
1185
|
-
CA_TYPE: 'MQA',
|
1186
|
-
DEFAULT_IP: '0.0.0.0',
|
1187
|
-
DEFAULT_SHARE_SENDER_STATS: {
|
1188
|
-
common: {
|
1189
|
-
common: {
|
1190
|
-
direction: 'sendrecv', // TODO: parse from SDP and save globally
|
1191
|
-
isMain: false, // always true for share sender
|
1192
|
-
mariFecEnabled: false, // unavailable
|
1193
|
-
mariRtxEnabled: false, // unavailable
|
1194
|
-
mariLiteEnabled: false, // unavailable
|
1195
|
-
mariQosEnabled: false, // unavailable
|
1196
|
-
multistreamEnabled: false, // unavailable
|
1197
|
-
},
|
1198
|
-
availableBitrate: 0,
|
1199
|
-
dtlsBitrate: 0, // unavailable
|
1200
|
-
dtlsPackets: 0, // unavailable
|
1201
|
-
fecBitrate: 0, // unavailable
|
1202
|
-
fecPackets: 0, // unavailable
|
1203
|
-
maxBitrate: 0, // unavailable
|
1204
|
-
queueDelay: 0, // unavailable
|
1205
|
-
remoteJitter: 0, // unavailable
|
1206
|
-
remoteLossRate: 0,
|
1207
|
-
roundTripTime: 0,
|
1208
|
-
rtcpBitrate: 0, // unavailable
|
1209
|
-
rtcpPackets: 0, // unavailable
|
1210
|
-
rtpBitrate: 0, // unavailable
|
1211
|
-
rtpPackets: 0,
|
1212
|
-
stunBitrate: 0, // unavailable
|
1213
|
-
stunPackets: 0, // unavailable
|
1214
|
-
transportType: 'UDP', // TODO: parse the transport type from the SDP and save globally
|
1215
|
-
},
|
1216
|
-
streams: [
|
1217
|
-
{
|
1218
|
-
common: {
|
1219
|
-
codec: 'H264', // TODO: parse the codec from the SDP and save globally
|
1220
|
-
duplicateSsci: 0, // unavailable
|
1221
|
-
requestedBitrate: 0, // unavailable
|
1222
|
-
requestedFrames: 0, // unavailable
|
1223
|
-
rtpPackets: 0,
|
1224
|
-
ssci: 0, // unavailable
|
1225
|
-
transmittedBitrate: 0,
|
1226
|
-
transmittedFrameRate: 0,
|
1227
|
-
},
|
1228
|
-
h264CodecProfile: 'BP', // TODO: parse the profile level from h264 in the SDP and save globally
|
1229
|
-
localConfigurationChanges: 0, // unavailable
|
1230
|
-
remoteConfigurationChanges: 0, // unavailable
|
1231
|
-
requestedFrameSize: 0, // unavailable
|
1232
|
-
requestedKeyFrames: 0, // unavailable
|
1233
|
-
transmittedFrameSize: 0, // unavailable
|
1234
|
-
transmittedHeight: 0,
|
1235
|
-
transmittedKeyFrames: 0,
|
1236
|
-
transmittedWidth: 0,
|
1237
|
-
},
|
1238
|
-
],
|
1239
|
-
},
|
1240
|
-
intervalMetadata: {
|
1241
|
-
memoryUsage: {
|
1242
|
-
cpuBitWidth: 0,
|
1243
|
-
mainProcessMaximumMemoryBytes: 0,
|
1244
|
-
osBitWidth: 0,
|
1245
|
-
processAverageMemoryUsage: 0,
|
1246
|
-
processMaximumMemoryBytes: 0,
|
1247
|
-
processMaximumMemoryUsage: 0,
|
1248
|
-
systemAverageMemoryUsage: 0,
|
1249
|
-
systemMaximumMemoryUsage: 0,
|
1250
|
-
},
|
1251
|
-
peerReflexiveIP: 'NULL', // TODO: save after ice trickling completes and use as a global variable
|
1252
|
-
processAverageCPU: 0,
|
1253
|
-
processMaximumCPU: 0,
|
1254
|
-
systemAverageCPU: 0,
|
1255
|
-
systemMaximumCPU: 0,
|
1256
|
-
},
|
1257
|
-
};
|
1258
|
-
|
1259
1169
|
// ****** MEDIA QUALITY CONSTANTS ****** //
|
1260
1170
|
|
1261
1171
|
// these values must match allowed values of RemoteQualityLevel from the @webex/internal-media-core lib
|