@webex/plugin-meetings 3.8.0 → 3.8.1-next.10
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/README.md +26 -13
- package/dist/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +70 -6
- package/dist/breakouts/index.js.map +1 -1
- package/dist/common/errors/webex-errors.js +12 -2
- package/dist/common/errors/webex-errors.js.map +1 -1
- package/dist/config.js +5 -1
- package/dist/config.js.map +1 -1
- package/dist/constants.js +28 -123
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/enums.js +3 -0
- package/dist/controls-options-manager/enums.js.map +1 -1
- package/dist/controls-options-manager/types.js.map +1 -1
- package/dist/controls-options-manager/util.js +78 -0
- package/dist/controls-options-manager/util.js.map +1 -1
- package/dist/interpretation/index.js +4 -4
- package/dist/interpretation/index.js.map +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/locus-info/controlsUtils.js +37 -11
- package/dist/locus-info/controlsUtils.js.map +1 -1
- package/dist/locus-info/index.js +92 -12
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/selfUtils.js +432 -418
- package/dist/locus-info/selfUtils.js.map +1 -1
- package/dist/media/index.js +17 -17
- package/dist/media/index.js.map +1 -1
- package/dist/media/properties.js +94 -6
- package/dist/media/properties.js.map +1 -1
- package/dist/meeting/brbState.js +9 -2
- package/dist/meeting/brbState.js.map +1 -1
- package/dist/meeting/in-meeting-actions.js +21 -1
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.js +678 -344
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/locusMediaRequest.js +21 -22
- package/dist/meeting/locusMediaRequest.js.map +1 -1
- package/dist/meeting/muteState.js +4 -4
- package/dist/meeting/muteState.js.map +1 -1
- package/dist/meeting/request.js +30 -0
- package/dist/meeting/request.js.map +1 -1
- package/dist/meeting/request.type.js.map +1 -1
- package/dist/meeting/util.js +13 -2
- package/dist/meeting/util.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.js +373 -68
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meeting-info/utilv2.js +5 -1
- package/dist/meeting-info/utilv2.js.map +1 -1
- package/dist/meetings/index.js +136 -1
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/util.js +14 -0
- package/dist/meetings/util.js.map +1 -1
- package/dist/member/index.js +55 -9
- package/dist/member/index.js.map +1 -1
- package/dist/member/types.js +3 -0
- package/dist/member/types.js.map +1 -1
- package/dist/member/util.js +335 -353
- package/dist/member/util.js.map +1 -1
- package/dist/members/collection.js.map +1 -1
- package/dist/members/index.js +137 -29
- package/dist/members/index.js.map +1 -1
- package/dist/members/request.js +38 -0
- package/dist/members/request.js.map +1 -1
- package/dist/members/util.js +36 -1
- package/dist/members/util.js.map +1 -1
- package/dist/metrics/constants.js +10 -0
- package/dist/metrics/constants.js.map +1 -1
- package/dist/multistream/remoteMediaManager.js +40 -8
- package/dist/multistream/remoteMediaManager.js.map +1 -1
- package/dist/reachability/clusterReachability.js +63 -27
- package/dist/reachability/clusterReachability.js.map +1 -1
- package/dist/reachability/index.js +107 -47
- package/dist/reachability/index.js.map +1 -1
- package/dist/reachability/reachability.types.js +14 -0
- package/dist/reachability/reachability.types.js.map +1 -1
- package/dist/reachability/request.js +19 -3
- package/dist/reachability/request.js.map +1 -1
- package/dist/reconnection-manager/index.js +2 -2
- package/dist/reconnection-manager/index.js.map +1 -1
- package/dist/recording-controller/util.js +5 -5
- package/dist/recording-controller/util.js.map +1 -1
- package/dist/roap/index.js.map +1 -1
- package/dist/roap/turnDiscovery.js +45 -27
- package/dist/roap/turnDiscovery.js.map +1 -1
- package/dist/roap/types.js +17 -0
- package/dist/roap/types.js.map +1 -0
- package/dist/types/common/errors/webex-errors.d.ts +7 -1
- package/dist/types/config.d.ts +3 -0
- package/dist/types/constants.d.ts +20 -85
- package/dist/types/controls-options-manager/enums.d.ts +4 -1
- package/dist/types/controls-options-manager/types.d.ts +10 -1
- package/dist/types/locus-info/index.d.ts +3 -3
- package/dist/types/locus-info/selfUtils.d.ts +216 -1
- package/dist/types/media/properties.d.ts +15 -0
- package/dist/types/meeting/in-meeting-actions.d.ts +20 -0
- package/dist/types/meeting/index.d.ts +65 -1
- package/dist/types/meeting/muteState.d.ts +0 -1
- package/dist/types/meeting/request.d.ts +12 -1
- package/dist/types/meeting/request.type.d.ts +6 -0
- package/dist/types/meeting/util.d.ts +3 -1
- package/dist/types/meeting-info/meeting-info-v2.d.ts +82 -1
- package/dist/types/meetings/index.d.ts +57 -0
- package/dist/types/member/index.d.ts +21 -6
- package/dist/types/member/types.d.ts +73 -14
- package/dist/types/member/util.d.ts +156 -1
- package/dist/types/members/collection.d.ts +6 -5
- package/dist/types/members/index.d.ts +32 -43
- package/dist/types/members/request.d.ts +26 -0
- package/dist/types/members/util.d.ts +27 -0
- package/dist/types/metrics/constants.d.ts +10 -0
- package/dist/types/multistream/remoteMediaManager.d.ts +10 -1
- package/dist/types/reachability/clusterReachability.d.ts +15 -7
- package/dist/types/reachability/index.d.ts +10 -1
- package/dist/types/reachability/reachability.types.d.ts +5 -0
- package/dist/types/roap/index.d.ts +3 -2
- package/dist/types/roap/turnDiscovery.d.ts +5 -17
- package/dist/types/roap/types.d.ts +16 -0
- package/dist/webinar/index.js +2 -2
- package/dist/webinar/index.js.map +1 -1
- package/package.json +24 -23
- package/src/breakouts/index.ts +69 -0
- package/src/common/errors/webex-errors.ts +8 -1
- package/src/config.ts +3 -0
- package/src/constants.ts +30 -90
- package/src/controls-options-manager/enums.ts +3 -0
- package/src/controls-options-manager/types.ts +16 -1
- package/src/controls-options-manager/util.ts +93 -0
- package/src/interpretation/index.ts +3 -3
- package/src/locus-info/controlsUtils.ts +59 -14
- package/src/locus-info/index.ts +97 -13
- package/src/locus-info/selfUtils.ts +496 -442
- package/src/media/index.ts +23 -21
- package/src/media/properties.ts +96 -0
- package/src/meeting/brbState.ts +11 -2
- package/src/meeting/in-meeting-actions.ts +40 -0
- package/src/meeting/index.ts +470 -105
- package/src/meeting/locusMediaRequest.ts +27 -22
- package/src/meeting/muteState.ts +4 -4
- package/src/meeting/request.ts +36 -1
- package/src/meeting/request.type.ts +7 -0
- package/src/meeting/util.ts +11 -2
- package/src/meeting-info/meeting-info-v2.ts +254 -8
- package/src/meeting-info/utilv2.ts +5 -0
- package/src/meetings/index.ts +148 -1
- package/src/meetings/util.ts +18 -0
- package/src/member/index.ts +68 -22
- package/src/member/types.ts +82 -16
- package/src/member/util.ts +357 -350
- package/src/members/collection.ts +4 -3
- package/src/members/index.ts +137 -18
- package/src/members/request.ts +44 -0
- package/src/members/util.ts +43 -1
- package/src/metrics/constants.ts +10 -0
- package/src/multistream/remoteMediaManager.ts +32 -10
- package/src/reachability/clusterReachability.ts +73 -26
- package/src/reachability/index.ts +62 -1
- package/src/reachability/reachability.types.ts +6 -0
- package/src/reachability/request.ts +7 -0
- package/src/reconnection-manager/index.ts +2 -2
- package/src/recording-controller/util.ts +17 -13
- package/src/roap/index.ts +3 -7
- package/src/roap/turnDiscovery.ts +34 -39
- package/src/roap/types.ts +23 -0
- package/src/webinar/index.ts +1 -1
- package/test/unit/spec/breakouts/index.ts +167 -95
- package/test/unit/spec/controls-options-manager/util.js +178 -0
- package/test/unit/spec/interpretation/index.ts +39 -1
- package/test/unit/spec/locus-info/controlsUtils.js +155 -9
- package/test/unit/spec/locus-info/index.js +209 -73
- package/test/unit/spec/locus-info/selfUtils.js +98 -24
- package/test/unit/spec/media/index.ts +150 -18
- package/test/unit/spec/media/properties.ts +130 -0
- package/test/unit/spec/meeting/brbState.ts +40 -2
- package/test/unit/spec/meeting/in-meeting-actions.ts +23 -4
- package/test/unit/spec/meeting/index.js +804 -139
- package/test/unit/spec/meeting/locusMediaRequest.ts +95 -87
- package/test/unit/spec/meeting/muteState.js +73 -2
- package/test/unit/spec/meeting/request.js +32 -1
- package/test/unit/spec/meeting/utils.js +119 -18
- package/test/unit/spec/meeting-info/meetinginfov2.js +484 -114
- package/test/unit/spec/meeting-info/utilv2.js +19 -0
- package/test/unit/spec/meetings/index.js +146 -2
- package/test/unit/spec/member/index.js +7 -0
- package/test/unit/spec/member/util.js +24 -0
- package/test/unit/spec/members/index.js +304 -78
- package/test/unit/spec/members/request.js +68 -22
- package/test/unit/spec/members/utils.js +75 -0
- package/test/unit/spec/multistream/remoteMediaManager.ts +397 -118
- package/test/unit/spec/reachability/clusterReachability.ts +88 -56
- package/test/unit/spec/reachability/index.ts +97 -0
- package/test/unit/spec/reachability/request.js +47 -2
- package/test/unit/spec/reconnection-manager/index.js +4 -4
- package/test/unit/spec/roap/turnDiscovery.ts +110 -28
- package/test/unit/spec/webinar/index.ts +5 -0
- package/dist/annotation/annotation.types.d.ts +0 -42
- package/dist/annotation/constants.d.ts +0 -31
- package/dist/annotation/index.d.ts +0 -117
- package/dist/breakouts/breakout.d.ts +0 -8
- package/dist/breakouts/collection.d.ts +0 -5
- package/dist/breakouts/edit-lock-error.d.ts +0 -15
- package/dist/breakouts/events.d.ts +0 -8
- package/dist/breakouts/index.d.ts +0 -5
- package/dist/breakouts/request.d.ts +0 -22
- package/dist/breakouts/utils.d.ts +0 -15
- package/dist/common/browser-detection.d.ts +0 -9
- package/dist/common/collection.d.ts +0 -48
- package/dist/common/config.d.ts +0 -2
- package/dist/common/errors/captcha-error.d.ts +0 -15
- package/dist/common/errors/intent-to-join.d.ts +0 -16
- package/dist/common/errors/join-meeting.d.ts +0 -17
- package/dist/common/errors/media.d.ts +0 -15
- package/dist/common/errors/no-meeting-info.d.ts +0 -14
- package/dist/common/errors/parameter.d.ts +0 -15
- package/dist/common/errors/password-error.d.ts +0 -15
- package/dist/common/errors/permission.d.ts +0 -14
- package/dist/common/errors/reclaim-host-role-error.js +0 -149
- package/dist/common/errors/reclaim-host-role-error.js.map +0 -1
- package/dist/common/errors/reclaim-host-role-errors.d.ts +0 -60
- package/dist/common/errors/reconnection-in-progress.d.ts +0 -9
- package/dist/common/errors/reconnection-in-progress.js +0 -33
- package/dist/common/errors/reconnection-in-progress.js.map +0 -1
- package/dist/common/errors/reconnection.d.ts +0 -15
- package/dist/common/errors/stats.d.ts +0 -15
- package/dist/common/errors/webex-errors.d.ts +0 -93
- package/dist/common/errors/webex-meetings-error.d.ts +0 -20
- package/dist/common/events/events-scope.d.ts +0 -17
- package/dist/common/events/events.d.ts +0 -12
- package/dist/common/events/trigger-proxy.d.ts +0 -2
- package/dist/common/events/util.d.ts +0 -2
- package/dist/common/logs/logger-config.d.ts +0 -2
- package/dist/common/logs/logger-proxy.d.ts +0 -2
- package/dist/common/logs/request.d.ts +0 -36
- package/dist/common/queue.d.ts +0 -34
- package/dist/config.d.ts +0 -72
- package/dist/constants.d.ts +0 -1088
- package/dist/controls-options-manager/constants.d.ts +0 -4
- package/dist/controls-options-manager/enums.d.ts +0 -15
- package/dist/controls-options-manager/index.d.ts +0 -136
- package/dist/controls-options-manager/types.d.ts +0 -43
- package/dist/controls-options-manager/util.d.ts +0 -1
- package/dist/index.d.ts +0 -7
- package/dist/interceptors/index.d.ts +0 -2
- package/dist/interceptors/locusRetry.d.ts +0 -27
- package/dist/interpretation/collection.d.ts +0 -5
- package/dist/interpretation/index.d.ts +0 -5
- package/dist/interpretation/siLanguage.d.ts +0 -5
- package/dist/locus-info/controlsUtils.d.ts +0 -2
- package/dist/locus-info/embeddedAppsUtils.d.ts +0 -2
- package/dist/locus-info/fullState.d.ts +0 -2
- package/dist/locus-info/hostUtils.d.ts +0 -2
- package/dist/locus-info/index.d.ts +0 -322
- package/dist/locus-info/infoUtils.d.ts +0 -2
- package/dist/locus-info/mediaSharesUtils.d.ts +0 -2
- package/dist/locus-info/parser.d.ts +0 -272
- package/dist/locus-info/selfUtils.d.ts +0 -2
- package/dist/media/index.d.ts +0 -34
- package/dist/media/properties.d.ts +0 -93
- package/dist/media/util.d.ts +0 -2
- package/dist/mediaQualityMetrics/config.d.ts +0 -241
- package/dist/mediaQualityMetrics/config.js +0 -502
- package/dist/mediaQualityMetrics/config.js.map +0 -1
- package/dist/meeting/effectsState.js +0 -260
- package/dist/meeting/effectsState.js.map +0 -1
- package/dist/meeting/in-meeting-actions.d.ts +0 -167
- package/dist/meeting/index.d.ts +0 -1825
- package/dist/meeting/locusMediaRequest.d.ts +0 -74
- package/dist/meeting/muteState.d.ts +0 -178
- package/dist/meeting/request.d.ts +0 -295
- package/dist/meeting/request.type.d.ts +0 -11
- package/dist/meeting/state.d.ts +0 -9
- package/dist/meeting/util.d.ts +0 -119
- package/dist/meeting/voicea-meeting.d.ts +0 -16
- package/dist/meeting-info/collection.d.ts +0 -20
- package/dist/meeting-info/index.d.ts +0 -69
- package/dist/meeting-info/meeting-info-v2.d.ts +0 -123
- package/dist/meeting-info/request.d.ts +0 -22
- package/dist/meeting-info/util.d.ts +0 -2
- package/dist/meeting-info/utilv2.d.ts +0 -2
- package/dist/meetings/collection.d.ts +0 -40
- package/dist/meetings/index.d.ts +0 -390
- package/dist/meetings/meetings.types.d.ts +0 -4
- package/dist/meetings/request.d.ts +0 -27
- package/dist/meetings/util.d.ts +0 -18
- package/dist/member/index.d.ts +0 -160
- package/dist/member/member.types.js +0 -17
- package/dist/member/member.types.js.map +0 -1
- package/dist/member/types.d.ts +0 -32
- package/dist/member/util.d.ts +0 -2
- package/dist/members/collection.d.ts +0 -29
- package/dist/members/index.d.ts +0 -353
- package/dist/members/request.d.ts +0 -114
- package/dist/members/types.d.ts +0 -25
- package/dist/members/util.d.ts +0 -215
- package/dist/metrics/config.js +0 -276
- package/dist/metrics/config.js.map +0 -1
- package/dist/metrics/constants.d.ts +0 -70
- package/dist/metrics/index.d.ts +0 -45
- package/dist/multistream/mediaRequestManager.d.ts +0 -119
- package/dist/multistream/receiveSlot.d.ts +0 -68
- package/dist/multistream/receiveSlotManager.d.ts +0 -56
- package/dist/multistream/remoteMedia.d.ts +0 -72
- package/dist/multistream/remoteMediaGroup.d.ts +0 -49
- package/dist/multistream/remoteMediaManager.d.ts +0 -300
- package/dist/multistream/sendSlotManager.d.ts +0 -69
- package/dist/networkQualityMonitor/index.d.ts +0 -70
- package/dist/networkQualityMonitor/index.js +0 -221
- package/dist/networkQualityMonitor/index.js.map +0 -1
- package/dist/peer-connection-manager/index.js +0 -671
- package/dist/peer-connection-manager/index.js.map +0 -1
- package/dist/peer-connection-manager/util.js +0 -109
- package/dist/peer-connection-manager/util.js.map +0 -1
- package/dist/personal-meeting-room/index.d.ts +0 -47
- package/dist/personal-meeting-room/request.d.ts +0 -14
- package/dist/personal-meeting-room/util.d.ts +0 -2
- package/dist/reachability/clusterReachability.d.ts +0 -109
- package/dist/reachability/index.d.ts +0 -105
- package/dist/reachability/request.d.ts +0 -39
- package/dist/reachability/util.d.ts +0 -8
- package/dist/reactions/constants.d.ts +0 -3
- package/dist/reactions/reactions.d.ts +0 -4
- package/dist/reactions/reactions.type.d.ts +0 -52
- package/dist/reconnection-manager/index.d.ts +0 -136
- package/dist/recording-controller/enums.d.ts +0 -7
- package/dist/recording-controller/index.d.ts +0 -207
- package/dist/recording-controller/util.d.ts +0 -14
- package/dist/roap/collection.js +0 -62
- package/dist/roap/collection.js.map +0 -1
- package/dist/roap/handler.js +0 -275
- package/dist/roap/handler.js.map +0 -1
- package/dist/roap/index.d.ts +0 -86
- package/dist/roap/request.d.ts +0 -39
- package/dist/roap/state.js +0 -126
- package/dist/roap/state.js.map +0 -1
- package/dist/roap/turnDiscovery.d.ts +0 -155
- package/dist/roap/util.js +0 -75
- package/dist/roap/util.js.map +0 -1
- package/dist/rtcMetrics/constants.d.ts +0 -4
- package/dist/rtcMetrics/constants.js +0 -11
- package/dist/rtcMetrics/constants.js.map +0 -1
- package/dist/rtcMetrics/index.d.ts +0 -61
- package/dist/rtcMetrics/index.js +0 -197
- package/dist/rtcMetrics/index.js.map +0 -1
- package/dist/statsAnalyzer/global.d.ts +0 -36
- package/dist/statsAnalyzer/global.js +0 -126
- package/dist/statsAnalyzer/global.js.map +0 -1
- package/dist/statsAnalyzer/index.d.ts +0 -217
- package/dist/statsAnalyzer/index.js +0 -1013
- package/dist/statsAnalyzer/index.js.map +0 -1
- package/dist/statsAnalyzer/mqaUtil.d.ts +0 -48
- package/dist/statsAnalyzer/mqaUtil.js +0 -179
- package/dist/statsAnalyzer/mqaUtil.js.map +0 -1
- package/dist/transcription/index.d.ts +0 -64
- package/dist/types/common/errors/reconnection-in-progress.d.ts +0 -9
- package/dist/types/mediaQualityMetrics/config.d.ts +0 -241
- package/dist/types/networkQualityMonitor/index.d.ts +0 -70
- package/dist/types/rtcMetrics/constants.d.ts +0 -4
- package/dist/types/rtcMetrics/index.d.ts +0 -71
- package/dist/types/statsAnalyzer/global.d.ts +0 -36
- package/dist/types/statsAnalyzer/index.d.ts +0 -217
- package/dist/types/statsAnalyzer/mqaUtil.d.ts +0 -48
- package/dist/webinar/collection.d.ts +0 -16
- package/dist/webinar/index.d.ts +0 -5
@@ -1,272 +0,0 @@
|
|
1
|
-
import SortedQueue from '../common/queue';
|
2
|
-
type LocusDeltaDto = {
|
3
|
-
url: string;
|
4
|
-
baseSequence: {
|
5
|
-
rangeStart: number;
|
6
|
-
rangeEnd: number;
|
7
|
-
entries: number[];
|
8
|
-
};
|
9
|
-
sequence: {
|
10
|
-
rangeStart: number;
|
11
|
-
rangeEnd: number;
|
12
|
-
entries: number[];
|
13
|
-
};
|
14
|
-
syncUrl: string;
|
15
|
-
};
|
16
|
-
/**
|
17
|
-
* Locus Delta Parser
|
18
|
-
* @private
|
19
|
-
* https://sqbu-github.cisco.com/WebExSquared/cloud-apps/wiki/Locus-Delta-Events
|
20
|
-
*/
|
21
|
-
export default class Parser {
|
22
|
-
status: 'IDLE' | 'PAUSED' | 'WORKING' | 'BLOCKED';
|
23
|
-
static loci: {
|
24
|
-
EQ: string;
|
25
|
-
GT: string;
|
26
|
-
LT: string;
|
27
|
-
DESYNC: string;
|
28
|
-
USE_INCOMING: string;
|
29
|
-
USE_CURRENT: string;
|
30
|
-
WAIT: string;
|
31
|
-
ERROR: string;
|
32
|
-
LOCUS_URL_CHANGED: string;
|
33
|
-
};
|
34
|
-
queue: SortedQueue<LocusDeltaDto>;
|
35
|
-
workingCopy: any;
|
36
|
-
syncTimer?: ReturnType<typeof setTimeout>;
|
37
|
-
/**
|
38
|
-
* @constructs Parser
|
39
|
-
*/
|
40
|
-
constructor();
|
41
|
-
/**
|
42
|
-
* Returns a debug string representing a locus delta - useful for logging
|
43
|
-
*
|
44
|
-
* @param {LocusDeltaDto} locus Locus delta
|
45
|
-
* @returns {string}
|
46
|
-
*/
|
47
|
-
static locus2string(locus: LocusDeltaDto): string;
|
48
|
-
/**
|
49
|
-
* Checks if two sequences overlap in time,
|
50
|
-
* the sequence with the higher minimum value is greater.
|
51
|
-
* Chooses sequence with most recent data.
|
52
|
-
* @param {Types~Locus} current
|
53
|
-
* @param {Types~Locus} incoming
|
54
|
-
* @returns {string} loci comparison state
|
55
|
-
*/
|
56
|
-
static checkSequenceOverlap(current: any, incoming: any): any;
|
57
|
-
/**
|
58
|
-
* Checks if two sequences have unequal ranges.
|
59
|
-
* Chooses sequence with most larger range.
|
60
|
-
* @param {Types~Locus} current
|
61
|
-
* @param {Types~Locus} incoming
|
62
|
-
* @returns {object} loci comparison
|
63
|
-
*/
|
64
|
-
static checkUnequalRanges(current: any, incoming: any): any;
|
65
|
-
/**
|
66
|
-
* Checks if either sequences has unique entries.
|
67
|
-
* Entries are considered unique if they do not overlap
|
68
|
-
* with other Loci sequences or range values.
|
69
|
-
* Chooses sequence with the unique entries.
|
70
|
-
* @param {Types~Locus} current
|
71
|
-
* @param {Types~Locus} incoming
|
72
|
-
* @returns {string} loci comparison state
|
73
|
-
*/
|
74
|
-
static checkForUniqueEntries(current: any, incoming: any): any;
|
75
|
-
/**
|
76
|
-
* Checks both Locus Delta objects to see if they are
|
77
|
-
* out of sync with one another. If so sends a DESYNC
|
78
|
-
* request to the server.
|
79
|
-
* @param {Types~Locus} current
|
80
|
-
* @param {Types~Locus} incoming
|
81
|
-
* @returns {string} loci comparison state
|
82
|
-
*/
|
83
|
-
static checkIfOutOfSync(current: any, incoming: any): any;
|
84
|
-
/**
|
85
|
-
* Compares two loci to determine which one contains the most recent state
|
86
|
-
* @instance
|
87
|
-
* @memberof Locus
|
88
|
-
* @param {Types~Locus} current
|
89
|
-
* @param {Types~Locus} incoming
|
90
|
-
* @returns {string} loci comparison state
|
91
|
-
*/
|
92
|
-
static compare(current: any, incoming: any): string;
|
93
|
-
/**
|
94
|
-
* Compares two loci sequences (with delta params) and indicates what action
|
95
|
-
* to take.
|
96
|
-
* @instance
|
97
|
-
* @memberof Locus
|
98
|
-
* @param {Types~Locus} current
|
99
|
-
* @param {Types~Locus} incoming
|
100
|
-
* @private
|
101
|
-
* @returns {string} loci comparison state
|
102
|
-
*/
|
103
|
-
private static compareDelta;
|
104
|
-
/**
|
105
|
-
* Compares Locus sequences - it should be called only for full Locus DTOs, not deltas
|
106
|
-
*
|
107
|
-
* @param {Types~Locus} current Current working copy
|
108
|
-
* @param {Types~Locus} incomingFullDto New Full Locus DTO
|
109
|
-
* @returns {string} either Parser.loci.USE_INCOMING or Parser.loci.USE_CURRENT
|
110
|
-
*/
|
111
|
-
static compareFullDtoSequence(current: any, incomingFullDto: any): string;
|
112
|
-
/**
|
113
|
-
* Returns true if the incoming full locus DTO is newer than the current working copy
|
114
|
-
*
|
115
|
-
* @param {Types~Locus} incomingFullDto New Full Locus DTO
|
116
|
-
* @returns {string} either Parser.loci.USE_INCOMING or Parser.loci.USE_CURRENT
|
117
|
-
*/
|
118
|
-
isNewFullLocus(incomingFullDto: any): boolean;
|
119
|
-
/**
|
120
|
-
* Compares Locus sequences
|
121
|
-
* @param {Types~Locus} current Current working copy
|
122
|
-
* @param {Types~Locus} incoming New Locus delta
|
123
|
-
* @returns {string}
|
124
|
-
*/
|
125
|
-
static compareSequence(current: any, incoming: any): any;
|
126
|
-
/**
|
127
|
-
* Transates the result of a sequence comparison into an intended behavior
|
128
|
-
* @param {string} result
|
129
|
-
* @returns {string} Locus comparison action
|
130
|
-
*/
|
131
|
-
static compareToAction(result: string): string;
|
132
|
-
/**
|
133
|
-
* Extracts a loci comparison from a string of data.
|
134
|
-
* @param {string} lociComparisonResult Comparison result with extra data
|
135
|
-
* @returns {string} Comparison of EQ, LT, GT, or DESYNC.
|
136
|
-
*/
|
137
|
-
static extractComparisonState(lociComparisonResult: string): string;
|
138
|
-
/**
|
139
|
-
* @typedef {object} LociMetadata
|
140
|
-
* @property {number} start - Starting sequence number
|
141
|
-
* @property {number} end - Ending sequence number
|
142
|
-
* @property {number} first - First sequence number
|
143
|
-
* @property {number} last - Last sequence number
|
144
|
-
* @property {number} min - Minimum sequence number
|
145
|
-
* @property {number} max - Maximum sequence number
|
146
|
-
* @property {number} entries - Loci sequence entries
|
147
|
-
*/
|
148
|
-
/**
|
149
|
-
* Metadata for Locus delta
|
150
|
-
* @param {Array.<number>} sequence Locus delta sequence
|
151
|
-
* @returns {LociMetadata} Locus Delta Metadata
|
152
|
-
*/
|
153
|
-
static getMetaData(sequence: any): {
|
154
|
-
start: any;
|
155
|
-
end: any;
|
156
|
-
first: any;
|
157
|
-
last: any;
|
158
|
-
min: any;
|
159
|
-
max: any;
|
160
|
-
entries: any;
|
161
|
-
};
|
162
|
-
/**
|
163
|
-
* Compares two Locus delta objects and notes unique
|
164
|
-
* values contained within baseLoci.
|
165
|
-
* @param {LociMetadata} baseLoci
|
166
|
-
* @param {LociMetadata} otherLoci
|
167
|
-
* @returns {Array.<number>} List of unique sequences
|
168
|
-
*/
|
169
|
-
static getUniqueSequences(baseLoci: any, otherLoci: any): number[];
|
170
|
-
/**
|
171
|
-
* Returns an array of numbers outside of a given range.
|
172
|
-
* @param {Array.<number>} list Array to filter
|
173
|
-
* @param {number} rangeStart Start of range
|
174
|
-
* @param {number} rangeEnd End of range
|
175
|
-
* @returns {Array.<number>} Array of numbers sorted ASC
|
176
|
-
*/
|
177
|
-
static getNumbersOutOfRange(list: Array<number>, rangeStart: number, rangeEnd: number): number[];
|
178
|
-
/**
|
179
|
-
* Checks if newLoci or workingCopy is invalid.
|
180
|
-
* @param {Types~Locus} newLoci
|
181
|
-
* @returns {boolean}
|
182
|
-
*/
|
183
|
-
isValidLocus(newLoci: any): boolean;
|
184
|
-
/**
|
185
|
-
* Determines if a paricular locus's sequence is empty
|
186
|
-
* @param {Types~Locus} locus
|
187
|
-
* @returns {bool}
|
188
|
-
*/
|
189
|
-
static isSequenceEmpty(locus: any): boolean;
|
190
|
-
/**
|
191
|
-
* Determines if an object has basic
|
192
|
-
* structure of a locus object.
|
193
|
-
* @param {Types~Locus} loci
|
194
|
-
* @returns {boolean}
|
195
|
-
*/
|
196
|
-
static isLoci(loci: any): boolean;
|
197
|
-
/**
|
198
|
-
* Processes next event in queue,
|
199
|
-
* if queue is empty sets status to idle.
|
200
|
-
* @returns {undefined}
|
201
|
-
*/
|
202
|
-
nextEvent(): void;
|
203
|
-
/**
|
204
|
-
* Function handler for delta actions,
|
205
|
-
* is set by instance callee.
|
206
|
-
* @param {string} action Locus delta action
|
207
|
-
* @param {Types~Locus} locus Locus delta
|
208
|
-
* @returns {undefined}
|
209
|
-
*/
|
210
|
-
onDeltaAction(action: string, locus: any): void;
|
211
|
-
/**
|
212
|
-
* Event handler for locus delta events
|
213
|
-
* @param {Types~Locus} loci Locus Delta
|
214
|
-
* @returns {undefined}
|
215
|
-
*/
|
216
|
-
onDeltaEvent(loci: any): void;
|
217
|
-
/**
|
218
|
-
* Appends new data onto a string of existing data.
|
219
|
-
* @param {string} newData
|
220
|
-
* @param {string} oldData
|
221
|
-
* @returns {string}
|
222
|
-
*/
|
223
|
-
static packComparisonResult(newData: string, oldData: string): string;
|
224
|
-
/**
|
225
|
-
* Pause locus processing
|
226
|
-
* @returns {undefined}
|
227
|
-
*/
|
228
|
-
pause(): void;
|
229
|
-
/**
|
230
|
-
* Triggers a sync with Locus
|
231
|
-
*
|
232
|
-
* @param {string} reason used just for logging
|
233
|
-
* @returns {undefined}
|
234
|
-
*/
|
235
|
-
private triggerSync;
|
236
|
-
/**
|
237
|
-
* Starts a timer with a random delay. When that timer expires we will do a sync.
|
238
|
-
*
|
239
|
-
* The main purpose of this timer is to handle a case when we get some out-of-order deltas,
|
240
|
-
* so we start waiting to receive the missing delta. If that delta never arrives, this timer
|
241
|
-
* will trigger a sync with Locus.
|
242
|
-
*
|
243
|
-
* @returns {undefined}
|
244
|
-
*/
|
245
|
-
private startSyncTimer;
|
246
|
-
/**
|
247
|
-
* Stops the timer for triggering a sync
|
248
|
-
*
|
249
|
-
* @returns {undefined}
|
250
|
-
*/
|
251
|
-
private stopSyncTimer;
|
252
|
-
/**
|
253
|
-
* Processes next locus delta in the queue,
|
254
|
-
* continues until the queue is empty
|
255
|
-
* or cleared.
|
256
|
-
* @returns {undefined}
|
257
|
-
*/
|
258
|
-
processDeltaEvent(): void;
|
259
|
-
/**
|
260
|
-
* Resume from a paused state
|
261
|
-
* @returns {undefined}
|
262
|
-
*/
|
263
|
-
resume(): void;
|
264
|
-
/**
|
265
|
-
* Gets related debug info for given error code
|
266
|
-
* @param {string} debugCode Debug code
|
267
|
-
* @param {string} comparison Locus comparison string
|
268
|
-
* @returns {object} Debug message
|
269
|
-
*/
|
270
|
-
static getDebugMessage(debugCode: string, comparison: string): any;
|
271
|
-
}
|
272
|
-
export {};
|
package/dist/media/index.d.ts
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
|
3
|
-
*/
|
4
|
-
import { type MultistreamConnectionConfig } from '@webex/internal-media-core';
|
5
|
-
export type BundlePolicy = MultistreamConnectionConfig['bundlePolicy'];
|
6
|
-
/**
|
7
|
-
* MediaDirection
|
8
|
-
* @typedef {Object} MediaDirection
|
9
|
-
* @property {boolean} sendAudio
|
10
|
-
* @property {boolean} receiveAudio
|
11
|
-
* @property {boolean} sendVideo
|
12
|
-
* @property {boolean} receiveVideo
|
13
|
-
* @property {boolean} sendShare
|
14
|
-
* @property {boolean} receiveShare
|
15
|
-
*/
|
16
|
-
/**
|
17
|
-
* SendOptions
|
18
|
-
* @typedef {Object} SendOptions
|
19
|
-
* @property sendAudio
|
20
|
-
* @property sendVideo
|
21
|
-
* @property sendShare
|
22
|
-
* @property isSharing
|
23
|
-
* @property {Object} sharePreferences
|
24
|
-
*/
|
25
|
-
/**
|
26
|
-
*
|
27
|
-
* @public
|
28
|
-
* @export
|
29
|
-
* Mimic browser APIs as "the ultimate browser".
|
30
|
-
* Handles the quirks of each browser.
|
31
|
-
* Extends and enhances adapter.js, i.e., the "media" file from the web client.
|
32
|
-
*/
|
33
|
-
declare const Media: any;
|
34
|
-
export default Media;
|
@@ -1,93 +0,0 @@
|
|
1
|
-
import { LocalCameraStream, LocalMicrophoneStream, LocalDisplayStream, LocalSystemAudioStream, RemoteStream } from '@webex/media-helpers';
|
2
|
-
export type MediaDirection = {
|
3
|
-
sendAudio: boolean;
|
4
|
-
sendVideo: boolean;
|
5
|
-
sendShare: boolean;
|
6
|
-
receiveAudio: boolean;
|
7
|
-
receiveVideo: boolean;
|
8
|
-
receiveShare: boolean;
|
9
|
-
};
|
10
|
-
/**
|
11
|
-
* @class MediaProperties
|
12
|
-
*/
|
13
|
-
export default class MediaProperties {
|
14
|
-
audioStream?: LocalMicrophoneStream;
|
15
|
-
mediaDirection: MediaDirection;
|
16
|
-
mediaSettings: any;
|
17
|
-
webrtcMediaConnection: any;
|
18
|
-
remoteAudioStream: RemoteStream;
|
19
|
-
remoteQualityLevel: any;
|
20
|
-
remoteShareStream: RemoteStream;
|
21
|
-
remoteVideoStream: RemoteStream;
|
22
|
-
shareVideoStream?: LocalDisplayStream;
|
23
|
-
shareAudioStream?: LocalSystemAudioStream;
|
24
|
-
videoDeviceId: any;
|
25
|
-
videoStream?: LocalCameraStream;
|
26
|
-
namespace: string;
|
27
|
-
/**
|
28
|
-
* @param {Object} [options] -- to auto construct
|
29
|
-
* @returns {MediaProperties}
|
30
|
-
*/
|
31
|
-
constructor();
|
32
|
-
/**
|
33
|
-
* Retrieves the preferred video input device
|
34
|
-
* @returns {Object|null}
|
35
|
-
*/
|
36
|
-
getVideoDeviceId(): any;
|
37
|
-
setMediaDirection(mediaDirection: any): void;
|
38
|
-
setMediaSettings(type: any, values: any): void;
|
39
|
-
setMediaPeerConnection(mediaPeerConnection: any): void;
|
40
|
-
setLocalVideoStream(videoStream?: LocalCameraStream): void;
|
41
|
-
setLocalAudioStream(audioStream?: LocalMicrophoneStream): void;
|
42
|
-
setLocalShareVideoStream(shareVideoStream?: LocalDisplayStream): void;
|
43
|
-
setLocalShareAudioStream(shareAudioStream?: LocalSystemAudioStream): void;
|
44
|
-
setRemoteQualityLevel(remoteQualityLevel: any): void;
|
45
|
-
setRemoteShareStream(remoteShareStream: RemoteStream): void;
|
46
|
-
/**
|
47
|
-
* Sets the remote audio stream
|
48
|
-
* @param {RemoteStream} remoteAudioStream RemoteStream to save
|
49
|
-
* @returns {void}
|
50
|
-
*/
|
51
|
-
setRemoteAudioStream(remoteAudioStream: RemoteStream): void;
|
52
|
-
/**
|
53
|
-
* Sets the remote video stream
|
54
|
-
* @param {RemoteStream} remoteVideoStream RemoteStream to save
|
55
|
-
* @returns {void}
|
56
|
-
*/
|
57
|
-
setRemoteVideoStream(remoteVideoStream: RemoteStream): void;
|
58
|
-
/**
|
59
|
-
* Stores the preferred video input device
|
60
|
-
* @param {string} deviceId Preferred video input device
|
61
|
-
* @returns {void}
|
62
|
-
*/
|
63
|
-
setVideoDeviceId(deviceId: string): void;
|
64
|
-
unsetPeerConnection(): void;
|
65
|
-
/**
|
66
|
-
* Removes both remote audio and video from class instance
|
67
|
-
* @returns {void}
|
68
|
-
*/
|
69
|
-
unsetRemoteMedia(): void;
|
70
|
-
unsetRemoteShareStream(): void;
|
71
|
-
/**
|
72
|
-
* Unsets all remote streams
|
73
|
-
* @returns {void}
|
74
|
-
*/
|
75
|
-
unsetRemoteStreams(): void;
|
76
|
-
/**
|
77
|
-
* Returns if we have at least one local share stream or not.
|
78
|
-
* @returns {Boolean}
|
79
|
-
*/
|
80
|
-
hasLocalShareStream(): boolean;
|
81
|
-
/**
|
82
|
-
* Waits for the webrtc media connection to be connected.
|
83
|
-
*
|
84
|
-
* @returns {Promise<void>}
|
85
|
-
*/
|
86
|
-
waitForMediaConnectionConnected(): Promise<void>;
|
87
|
-
/**
|
88
|
-
* Returns the type of a connection that has been established
|
89
|
-
*
|
90
|
-
* @returns {Promise<'UDP' | 'TCP' | 'TURN-TLS' | 'TURN-TCP' | 'TURN-UDP' | 'unknown'>}
|
91
|
-
*/
|
92
|
-
getCurrentConnectionType(): Promise<string>;
|
93
|
-
}
|
package/dist/media/util.d.ts
DELETED
@@ -1,241 +0,0 @@
|
|
1
|
-
export declare const emptyMqaInterval: {
|
2
|
-
audioReceive: any[];
|
3
|
-
audioTransmit: any[];
|
4
|
-
intervalMetadata: {
|
5
|
-
peerReflexiveIP: string;
|
6
|
-
peripherals: any[];
|
7
|
-
processAverageCPU: number;
|
8
|
-
processMaximumCPU: number;
|
9
|
-
systemAverageCPU: number;
|
10
|
-
systemMaximumCPU: number;
|
11
|
-
};
|
12
|
-
networkType: string;
|
13
|
-
intervalNumber: number;
|
14
|
-
videoReceive: any[];
|
15
|
-
videoTransmit: any[];
|
16
|
-
};
|
17
|
-
export declare const emptyAudioReceive: {
|
18
|
-
common: {
|
19
|
-
common: {
|
20
|
-
direction: string;
|
21
|
-
isMain: boolean;
|
22
|
-
mariFecEnabled: boolean;
|
23
|
-
mariQosEnabled: boolean;
|
24
|
-
multistreamEnabled: boolean;
|
25
|
-
};
|
26
|
-
dtlsBitrate: number;
|
27
|
-
dtlsPackets: number;
|
28
|
-
fecBitrate: number;
|
29
|
-
fecPackets: number;
|
30
|
-
maxBitrate: number;
|
31
|
-
mediaHopByHopLost: number;
|
32
|
-
rtcpBitrate: number;
|
33
|
-
rtcpPackets: number;
|
34
|
-
rtpBitrate: number;
|
35
|
-
rtpHopByHopLost: number;
|
36
|
-
rtpPackets: number;
|
37
|
-
rtpRecovered: number;
|
38
|
-
rtxBitrate: number;
|
39
|
-
rtxPackets: number;
|
40
|
-
srtcpUnprotectErrors: number;
|
41
|
-
srtpUnprotectErrors: number;
|
42
|
-
stunBitrate: number;
|
43
|
-
stunPackets: number;
|
44
|
-
transportType: string;
|
45
|
-
};
|
46
|
-
streams: any[];
|
47
|
-
};
|
48
|
-
export declare const emptyAudioReceiveStream: {
|
49
|
-
common: {
|
50
|
-
codec: string;
|
51
|
-
concealedFrames: number;
|
52
|
-
csi: any[];
|
53
|
-
maxConcealRunLength: number;
|
54
|
-
optimalBitrate: number;
|
55
|
-
optimalFrameRate: number;
|
56
|
-
receivedBitrate: number;
|
57
|
-
receivedFrameRate: number;
|
58
|
-
renderedFrameRate: number;
|
59
|
-
requestedBitrate: number;
|
60
|
-
requestedFrameRate: number;
|
61
|
-
rtpEndToEndLost: number;
|
62
|
-
maxRtpJitter: number;
|
63
|
-
meanRtpJitter: number;
|
64
|
-
rtpPackets: number;
|
65
|
-
ssci: number;
|
66
|
-
};
|
67
|
-
};
|
68
|
-
export declare const emptyAudioTransmit: {
|
69
|
-
common: {
|
70
|
-
availableBitrate: number;
|
71
|
-
common: {
|
72
|
-
direction: string;
|
73
|
-
isMain: boolean;
|
74
|
-
mariFecEnabled: boolean;
|
75
|
-
mariQosEnabled: boolean;
|
76
|
-
multistreamEnabled: boolean;
|
77
|
-
};
|
78
|
-
dtlsBitrate: number;
|
79
|
-
dtlsPackets: number;
|
80
|
-
fecBitrate: number;
|
81
|
-
fecPackets: number;
|
82
|
-
maxBitrate: number;
|
83
|
-
queueDelay: number;
|
84
|
-
remoteJitter: number;
|
85
|
-
remoteLossRate: number;
|
86
|
-
remoteReceiveRate: number;
|
87
|
-
roundTripTime: number;
|
88
|
-
rtcpBitrate: number;
|
89
|
-
rtcpPackets: number;
|
90
|
-
rtpBitrate: number;
|
91
|
-
rtpPackets: number;
|
92
|
-
rtxBitrate: number;
|
93
|
-
rtxPackets: number;
|
94
|
-
stunBitrate: number;
|
95
|
-
stunPackets: number;
|
96
|
-
transportType: string;
|
97
|
-
};
|
98
|
-
streams: any[];
|
99
|
-
};
|
100
|
-
export declare const emptyAudioTransmitStream: {
|
101
|
-
common: {
|
102
|
-
codec: string;
|
103
|
-
csi: any[];
|
104
|
-
requestedBitrate: number;
|
105
|
-
requestedFrames: number;
|
106
|
-
rtpPackets: number;
|
107
|
-
ssci: number;
|
108
|
-
transmittedBitrate: number;
|
109
|
-
transmittedFrameRate: number;
|
110
|
-
};
|
111
|
-
};
|
112
|
-
export declare const emptyVideoReceive: {
|
113
|
-
common: {
|
114
|
-
common: {
|
115
|
-
direction: string;
|
116
|
-
isMain: boolean;
|
117
|
-
mariFecEnabled: boolean;
|
118
|
-
mariQosEnabled: boolean;
|
119
|
-
multistreamEnabled: boolean;
|
120
|
-
};
|
121
|
-
dtlsBitrate: number;
|
122
|
-
dtlsPackets: number;
|
123
|
-
fecBitrate: number;
|
124
|
-
fecPackets: number;
|
125
|
-
maxBitrate: number;
|
126
|
-
mediaHopByHopLost: number;
|
127
|
-
rtcpBitrate: number;
|
128
|
-
rtcpPackets: number;
|
129
|
-
rtpBitrate: number;
|
130
|
-
rtpHopByHopLost: number;
|
131
|
-
rtpPackets: number;
|
132
|
-
rtpRecovered: number;
|
133
|
-
rtxBitrate: number;
|
134
|
-
rtxPackets: number;
|
135
|
-
srtcpUnprotectErrors: number;
|
136
|
-
srtpUnprotectErrors: number;
|
137
|
-
stunBitrate: number;
|
138
|
-
stunPackets: number;
|
139
|
-
transportType: string;
|
140
|
-
};
|
141
|
-
streams: any[];
|
142
|
-
};
|
143
|
-
export declare const emptyVideoReceiveStream: {
|
144
|
-
common: {
|
145
|
-
codec: string;
|
146
|
-
concealedFrames: number;
|
147
|
-
csi: any[];
|
148
|
-
maxConcealRunLength: number;
|
149
|
-
optimalBitrate: number;
|
150
|
-
optimalFrameRate: number;
|
151
|
-
receivedBitrate: number;
|
152
|
-
receivedFrameRate: number;
|
153
|
-
renderedFrameRate: number;
|
154
|
-
requestedBitrate: number;
|
155
|
-
requestedFrameRate: number;
|
156
|
-
rtpEndToEndLost: number;
|
157
|
-
rtpJitter: number;
|
158
|
-
rtpPackets: number;
|
159
|
-
ssci: number;
|
160
|
-
};
|
161
|
-
h264CodecProfile: string;
|
162
|
-
isActiveSpeaker: boolean;
|
163
|
-
optimalFrameSize: number;
|
164
|
-
receivedFrameSize: number;
|
165
|
-
receivedHeight: number;
|
166
|
-
receivedKeyFrames: number;
|
167
|
-
receivedKeyFramesForRequest: number;
|
168
|
-
receivedKeyFramesSourceChange: number;
|
169
|
-
receivedKeyFramesUnknown: number;
|
170
|
-
receivedWidth: number;
|
171
|
-
requestedFrameSize: number;
|
172
|
-
requestedKeyFrames: number;
|
173
|
-
};
|
174
|
-
export declare const emptyVideoTransmit: {
|
175
|
-
common: {
|
176
|
-
availableBitrate: number;
|
177
|
-
common: {
|
178
|
-
direction: string;
|
179
|
-
isMain: boolean;
|
180
|
-
mariFecEnabled: boolean;
|
181
|
-
mariQosEnabled: boolean;
|
182
|
-
multistreamEnabled: boolean;
|
183
|
-
};
|
184
|
-
dtlsBitrate: number;
|
185
|
-
dtlsPackets: number;
|
186
|
-
fecBitrate: number;
|
187
|
-
fecPackets: number;
|
188
|
-
maxBitrate: number;
|
189
|
-
queueDelay: number;
|
190
|
-
remoteJitter: number;
|
191
|
-
remoteLossRate: number;
|
192
|
-
remoteReceiveRate: number;
|
193
|
-
roundTripTime: number;
|
194
|
-
rtcpBitrate: number;
|
195
|
-
rtcpPackets: number;
|
196
|
-
rtpBitrate: number;
|
197
|
-
rtpPackets: number;
|
198
|
-
rtxBitrate: number;
|
199
|
-
rtxPackets: number;
|
200
|
-
stunBitrate: number;
|
201
|
-
stunPackets: number;
|
202
|
-
transportType: string;
|
203
|
-
};
|
204
|
-
streams: any[];
|
205
|
-
};
|
206
|
-
export declare const emptyVideoTransmitStream: {
|
207
|
-
common: {
|
208
|
-
codec: string;
|
209
|
-
csi: any[];
|
210
|
-
duplicateSsci: number;
|
211
|
-
requestedBitrate: number;
|
212
|
-
requestedFrames: number;
|
213
|
-
rtpPackets: number;
|
214
|
-
ssci: number;
|
215
|
-
transmittedBitrate: number;
|
216
|
-
transmittedFrameRate: number;
|
217
|
-
};
|
218
|
-
h264CodecProfile: string;
|
219
|
-
isAvatar: boolean;
|
220
|
-
isHardwareEncoded: boolean;
|
221
|
-
localConfigurationChanges: number;
|
222
|
-
maxFrameQp: number;
|
223
|
-
maxNoiseLevel: number;
|
224
|
-
minRegionQp: number;
|
225
|
-
remoteConfigurationChanges: number;
|
226
|
-
requestedFrameSize: number;
|
227
|
-
requestedKeyFrames: number;
|
228
|
-
transmittedFrameSize: number;
|
229
|
-
transmittedHeight: number;
|
230
|
-
transmittedKeyFrames: number;
|
231
|
-
transmittedKeyFramesClient: number;
|
232
|
-
transmittedKeyFramesConfigurationChange: number;
|
233
|
-
transmittedKeyFramesFeedback: number;
|
234
|
-
transmittedKeyFramesLocalDrop: number;
|
235
|
-
transmittedKeyFramesOtherLayer: number;
|
236
|
-
transmittedKeyFramesPeriodic: number;
|
237
|
-
transmittedKeyFramesSceneChange: number;
|
238
|
-
transmittedKeyFramesStartup: number;
|
239
|
-
transmittedKeyFramesUnknown: number;
|
240
|
-
transmittedWidth: number;
|
241
|
-
};
|