@vkontakte/calls-sdk 2.8.11-dev.af7eda54.0 → 2.8.11-dev.b9508cee.0
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/CallsSDK.d.ts +23 -28
- package/abstract/BaseApi.d.ts +3 -5
- package/abstract/BaseSignaling.d.ts +4 -5
- package/calls-sdk.cjs.js +9 -9
- package/calls-sdk.esm.js +4580 -3724
- package/classes/AudioFix.d.ts +5 -1
- package/classes/AudioOutput.d.ts +5 -1
- package/classes/CallRegistry.d.ts +26 -0
- package/classes/Conversation.d.ts +43 -12
- package/classes/ConversationResponseValidator.d.ts +3 -0
- package/classes/DebugInfo.d.ts +3 -0
- package/classes/DisplayLayoutRequester.d.ts +39 -0
- package/classes/MediaSource.d.ts +12 -1
- package/classes/ParticipantIdRegistry.d.ts +3 -0
- package/classes/ProducerCommandSerializationService.d.ts +3 -0
- package/classes/SignalingActor.d.ts +3 -1
- package/classes/SpeakerDetector.d.ts +2 -1
- package/classes/SpecListener.d.ts +10 -1
- package/classes/{Logger.d.ts → StatsLogger.d.ts} +3 -13
- package/classes/VideoEffectsFpsLimiter.d.ts +3 -0
- package/classes/asr/AsrReceiver.d.ts +3 -1
- package/classes/codec/LibVPxDecoder.d.ts +3 -0
- package/classes/codec/LibVPxEncoder.d.ts +3 -1
- package/classes/codec/WebCodecsDecoder.d.ts +3 -0
- package/classes/codec/WebCodecsEncoder.d.ts +3 -1
- package/classes/codec/WorkerBase.d.ts +7 -0
- package/classes/screenshare/BaseStreamBuilder.d.ts +4 -1
- package/classes/screenshare/CanvasRenderer.d.ts +3 -1
- package/classes/screenshare/ScreenCaptureReceiver.d.ts +7 -1
- package/classes/screenshare/ScreenCaptureSender.d.ts +5 -1
- package/classes/screenshare/ScreenCongestionControl.d.ts +3 -1
- package/classes/screenshare/StreamBuilder.d.ts +5 -1
- package/classes/screenshare/TrackGeneratorRenderer.d.ts +3 -1
- package/classes/screenshare/WebmBuilder.d.ts +3 -1
- package/classes/stat/CodecStatsAggregator.d.ts +7 -7
- package/classes/stat/ConversationStats.d.ts +21 -0
- package/classes/stat/StatAggregator.d.ts +6 -6
- package/classes/stat/StatFirstMediaReceived.d.ts +6 -2
- package/classes/stat/StatPings.d.ts +9 -9
- package/classes/stat/StatScreenShareFirstFrame.d.ts +3 -1
- package/classes/stat/StatSignalingCommands.d.ts +8 -8
- package/classes/transport/BaseTransport.d.ts +1 -1
- package/classes/transport/DirectStatReporter.d.ts +3 -1
- package/classes/transport/DirectTransport.d.ts +12 -1
- package/classes/transport/PerfStatReporter.d.ts +5 -1
- package/classes/transport/ServerTransport.d.ts +10 -2
- package/classes/transport/Transport.d.ts +13 -14
- package/default/Api.d.ts +9 -8
- package/default/Signaling.d.ts +38 -43
- package/default/SignalingTransport.d.ts +68 -0
- package/enums/HangupType.d.ts +2 -1
- package/enums/SignalingNotification.d.ts +3 -1
- package/enums/TransportState.d.ts +10 -0
- package/enums/TransportTopology.d.ts +5 -0
- package/package.json +1 -1
- package/static/Capabilities.d.ts +5 -0
- package/static/Debug.d.ts +27 -8
- package/static/External.d.ts +146 -71
- package/static/Params.d.ts +106 -78
- package/static/ParticipantConnectionStatusUtils.d.ts +16 -0
- package/static/Utils.d.ts +3 -2
- package/static/WebRTCUtils.d.ts +6 -4
- package/types/Capabilities.d.ts +24 -0
- package/types/Conversation.d.ts +1 -1
- package/types/ExternalId.d.ts +1 -1
- package/types/FastStart.d.ts +1 -0
- package/types/Participant.d.ts +12 -1
- package/types/ParticipantLayout.d.ts +33 -0
- package/types/PushData.d.ts +3 -0
- package/types/SignalingMessage.d.ts +16 -2
- package/types/Statistics.d.ts +1 -1
- package/types/WebTransport.d.ts +4 -0
- package/utils/DebugStorage.d.ts +1 -2
- package/classes/stat/EventMetricsService.d.ts +0 -9
package/classes/AudioFix.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
2
|
+
import StatsLogger from './StatsLogger';
|
|
1
3
|
import { MediaSource } from './MediaSource';
|
|
2
4
|
export default class AudioFix {
|
|
3
5
|
private _fixNoPacketsApplied;
|
|
@@ -7,11 +9,13 @@ export default class AudioFix {
|
|
|
7
9
|
private _fixTooManyPacketsFailed;
|
|
8
10
|
private _fixTooManyPacketsTime;
|
|
9
11
|
private _mediaSource;
|
|
12
|
+
private readonly _debug;
|
|
13
|
+
private readonly _logger;
|
|
10
14
|
private _lastPacketsSent;
|
|
11
15
|
private _lastPacketsSentTime;
|
|
12
16
|
private _toggleAudioPromise;
|
|
13
17
|
private _fixNoPacketsAppliedVideo;
|
|
14
|
-
constructor(mediaSource: MediaSource);
|
|
18
|
+
constructor(mediaSource: MediaSource, debug?: DebugLogger, logger?: StatsLogger | null);
|
|
15
19
|
private _fixAudioDeviceNoPackets;
|
|
16
20
|
private _fixAudioDeviceTooManyPackets;
|
|
17
21
|
fix(rtps: any[]): void;
|
package/classes/AudioOutput.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
1
2
|
import { ParticipantId } from '../types/Participant';
|
|
3
|
+
import StatsLogger from './StatsLogger';
|
|
2
4
|
import { StatFirstMediaReceived } from './stat/StatFirstMediaReceived';
|
|
3
5
|
/**
|
|
4
6
|
* Единый AudioOutput поддерживающий p2p, audioMix и transparent-audio
|
|
@@ -10,7 +12,9 @@ export default class AudioOutput {
|
|
|
10
12
|
private _volume;
|
|
11
13
|
private readonly _features;
|
|
12
14
|
private readonly _statFirstMediaReceived;
|
|
13
|
-
|
|
15
|
+
protected readonly _debug: DebugLogger;
|
|
16
|
+
private readonly _logger;
|
|
17
|
+
constructor(statFirstMediaReceived: StatFirstMediaReceived, allowMultipleTracks?: boolean, debug?: DebugLogger, logger?: StatsLogger | null);
|
|
14
18
|
add(participantId: ParticipantId, track: MediaStreamTrack): void;
|
|
15
19
|
remove(participantId: ParticipantId, track: MediaStreamTrack): void;
|
|
16
20
|
get volume(): number;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import Conversation from './Conversation';
|
|
2
|
+
import MediaSettings from '../types/MediaSettings';
|
|
3
|
+
export interface HoldableConversation extends Conversation {
|
|
4
|
+
id: string;
|
|
5
|
+
hold(hold: boolean, lastActiveMediaSettings?: MediaSettings): Promise<void>;
|
|
6
|
+
}
|
|
7
|
+
export declare class CallRegistry {
|
|
8
|
+
private _conversations;
|
|
9
|
+
private _activeId;
|
|
10
|
+
private _mutex;
|
|
11
|
+
add(conversation: HoldableConversation): void;
|
|
12
|
+
remove(id: string | null): void;
|
|
13
|
+
get(id: string): HoldableConversation | undefined;
|
|
14
|
+
getActive(): HoldableConversation | null;
|
|
15
|
+
getFirst(): HoldableConversation | null;
|
|
16
|
+
getActiveId(): string | null;
|
|
17
|
+
has(id: string): boolean;
|
|
18
|
+
getAll(): HoldableConversation[];
|
|
19
|
+
get callsLength(): number;
|
|
20
|
+
setActive(id: string): Promise<void>;
|
|
21
|
+
setHold(id: string): Promise<void>;
|
|
22
|
+
switchCall(id: string): Promise<void>;
|
|
23
|
+
clear(): void;
|
|
24
|
+
}
|
|
25
|
+
declare const callRegistry: CallRegistry;
|
|
26
|
+
export { callRegistry };
|
|
@@ -16,11 +16,11 @@ import { ConversationData, ConversationOnStartParams } from '../types/Conversati
|
|
|
16
16
|
import { ExternalId, ExternalParticipant, ExternalParticipantId, ExternalParticipantListChunk, ExternalUserId } from '../types/ExternalId';
|
|
17
17
|
import type { FastJoinHandler } from '../types/FastJoin';
|
|
18
18
|
import MediaModifiers from '../types/MediaModifiers';
|
|
19
|
-
import { IVideoDimentions } from '../types/MediaSettings';
|
|
19
|
+
import MediaSettings, { IVideoDimentions } from '../types/MediaSettings';
|
|
20
20
|
import { IAddMovieParams, IUpdateMovieData } from '../types/MovieShare';
|
|
21
21
|
import MuteStates from '../types/MuteStates';
|
|
22
22
|
import { CompositeUserId, IGetParticipantsParameters, ParticipantId, ParticipantStateData } from '../types/Participant';
|
|
23
|
-
import { ParticipantLayout } from '../types/ParticipantLayout';
|
|
23
|
+
import { DisplayLayoutRequest, ParticipantLayout } from '../types/ParticipantLayout';
|
|
24
24
|
import { ParticipantListChunkParameters } from '../types/ParticipantListChunk';
|
|
25
25
|
import ParticipantPriority from '../types/ParticipantPriority';
|
|
26
26
|
import { ParticipantStreamDescription } from '../types/ParticipantStreamDescription';
|
|
@@ -32,16 +32,20 @@ export default class Conversation extends EventEmitter {
|
|
|
32
32
|
private readonly _api;
|
|
33
33
|
private readonly _signaling;
|
|
34
34
|
private readonly _signalingActor;
|
|
35
|
+
private readonly _displayLayoutRequester;
|
|
35
36
|
private _mediaSource;
|
|
36
37
|
private _conversation;
|
|
37
38
|
private _myLastRequestedLayouts;
|
|
38
39
|
private _state;
|
|
40
|
+
private _previousState;
|
|
41
|
+
/** Если пользователь в зале ожидания, холд должен вызываться после промоута */
|
|
42
|
+
private _waitingHallHoldPending;
|
|
39
43
|
private _participantState;
|
|
40
44
|
private _participants;
|
|
41
45
|
private _pendingParticipants;
|
|
42
46
|
private _transport;
|
|
43
47
|
private _debugInfo;
|
|
44
|
-
private
|
|
48
|
+
private readonly _debug;
|
|
45
49
|
private _volumesDetector;
|
|
46
50
|
private _speakerDetector;
|
|
47
51
|
private _localVolumeDetector;
|
|
@@ -51,12 +55,11 @@ export default class Conversation extends EventEmitter {
|
|
|
51
55
|
private _isRealTimeAsrRequested;
|
|
52
56
|
private _serverSettings;
|
|
53
57
|
private _serverTimeOffset;
|
|
54
|
-
private
|
|
55
|
-
private
|
|
56
|
-
private static _delayedHangup;
|
|
57
|
-
private static _abortController;
|
|
58
|
+
private _delayedHangup;
|
|
59
|
+
private _abortController;
|
|
58
60
|
private readonly _onUnload;
|
|
59
61
|
private readonly _audioOutput;
|
|
62
|
+
private readonly _stats;
|
|
60
63
|
private _lastStalled;
|
|
61
64
|
private _audioMixStalled;
|
|
62
65
|
private _audioFix;
|
|
@@ -71,6 +74,11 @@ export default class Conversation extends EventEmitter {
|
|
|
71
74
|
static current(): Conversation | null;
|
|
72
75
|
static hangupAfterInit(): void;
|
|
73
76
|
static id(): string | null;
|
|
77
|
+
get id(): string;
|
|
78
|
+
get externalId(): ExternalParticipantId | undefined;
|
|
79
|
+
get mediaSettings(): MediaSettings | undefined;
|
|
80
|
+
get isCallHeld(): boolean;
|
|
81
|
+
static debugSessionId(): string | null;
|
|
74
82
|
static getSyncedTime(): number;
|
|
75
83
|
get debugSessionId(): string | null;
|
|
76
84
|
onStart({ opponentIds, opponentType, mediaOptions, payload, joiningAllowed, requireAuthToJoin, onlyAdminCanShareMovie, externalIds, onFastStart, conversationId, }: ConversationOnStartParams): Promise<ConversationData>;
|
|
@@ -109,7 +117,7 @@ export default class Conversation extends EventEmitter {
|
|
|
109
117
|
destroy(): Promise<void>;
|
|
110
118
|
private _getConversationParams;
|
|
111
119
|
private _setConversationParams;
|
|
112
|
-
private
|
|
120
|
+
private _buildSignalingEndpoint;
|
|
113
121
|
/**
|
|
114
122
|
* @throws ErrorEvent
|
|
115
123
|
*/
|
|
@@ -124,6 +132,7 @@ export default class Conversation extends EventEmitter {
|
|
|
124
132
|
private _prepareConversation;
|
|
125
133
|
private _createParticipant;
|
|
126
134
|
private _getParticipantId;
|
|
135
|
+
private _cacheParticipantExternalIds;
|
|
127
136
|
private _setConversation;
|
|
128
137
|
private _updateConversation;
|
|
129
138
|
private _createMediaSource;
|
|
@@ -136,10 +145,16 @@ export default class Conversation extends EventEmitter {
|
|
|
136
145
|
private _registerParticipants;
|
|
137
146
|
/** Установим состояние локальных мьютов */
|
|
138
147
|
private _registerParticipantLocalMuteState;
|
|
139
|
-
private
|
|
148
|
+
private _remoteParticipantSessionState;
|
|
149
|
+
private _buildConnectionStatus;
|
|
150
|
+
private _isParticipantSessionStateApplicable;
|
|
151
|
+
private _setTransportStatus;
|
|
152
|
+
private _setSessionState;
|
|
153
|
+
private _emitParticipantTransition;
|
|
140
154
|
private _registerParticipantInCache;
|
|
141
155
|
private _getExistedParticipantByIdOrCreate;
|
|
142
156
|
private _getExternalIdByParticipantId;
|
|
157
|
+
private _getExternalIdsByOkIdsFromCache;
|
|
143
158
|
private _registerParticipantAndSetMarkersIfChunkEnabled;
|
|
144
159
|
private _warnParticipantNotInConversation;
|
|
145
160
|
private _denormalizeMarkers;
|
|
@@ -176,6 +191,7 @@ export default class Conversation extends EventEmitter {
|
|
|
176
191
|
private _cleanupParticipants;
|
|
177
192
|
private _cleanupParticipantAgnosticStreams;
|
|
178
193
|
private _cleanupTransport;
|
|
194
|
+
private _cleanupTransportForHold;
|
|
179
195
|
private _cleanupSpeakerDetector;
|
|
180
196
|
private _cleanupSpecListener;
|
|
181
197
|
private _cleanupSignaling;
|
|
@@ -203,14 +219,18 @@ export default class Conversation extends EventEmitter {
|
|
|
203
219
|
*/
|
|
204
220
|
changePriorities(priorities: ParticipantPriority[]): Promise<void>;
|
|
205
221
|
changeParticipantState(state: ParticipantStateData, compositeUserId?: CompositeUserId): Promise<void>;
|
|
206
|
-
hold(hold: boolean): Promise<void>;
|
|
222
|
+
hold(hold: boolean, lastActiveMediaSettings?: MediaSettings): Promise<void>;
|
|
223
|
+
private _holdLocally;
|
|
224
|
+
private _resumeLocalMedia;
|
|
225
|
+
private _restoreStateAfterHold;
|
|
226
|
+
private _isWaitingForPromotion;
|
|
227
|
+
private _getWaitingForPromotionStatus;
|
|
207
228
|
putHandsDown(): Promise<void>;
|
|
208
229
|
requestKeyFrame(participantStreamDescription: ParticipantStreamDescription): Promise<void | SignalingMessage>;
|
|
209
230
|
requestTestMode(consumerCommand: string, producerCommand: string): Promise<void>;
|
|
210
231
|
updateDisplayLayout(layouts: ParticipantLayout[]): Promise<void>;
|
|
232
|
+
requestDisplayLayout(requests: DisplayLayoutRequest[]): Promise<void>;
|
|
211
233
|
feedback(key: string): Promise<SignalingMessage>;
|
|
212
|
-
userFeedbackStats(userResponse: number, reason?: string, groupCallUsersCount?: number): void;
|
|
213
|
-
sendClientEvent(eventType: string, eventData?: Record<string, string | number | boolean>, immediately?: boolean): void;
|
|
214
234
|
private _changeMediaSettings;
|
|
215
235
|
private _stopStreaming;
|
|
216
236
|
/**
|
|
@@ -306,11 +326,17 @@ export default class Conversation extends EventEmitter {
|
|
|
306
326
|
private _changeMultipleParticipantState;
|
|
307
327
|
private _invokeRolesChangedCallbackIfNeeded;
|
|
308
328
|
private _onSignalingNotification;
|
|
329
|
+
private _onSignalingTopologyChanged;
|
|
309
330
|
private _onPromotionApproved;
|
|
310
331
|
private _onSignalingReconnect;
|
|
311
332
|
private _onSignalingFailed;
|
|
312
333
|
private _onAcceptedCall;
|
|
313
334
|
private _onHungup;
|
|
335
|
+
private _onSessionState;
|
|
336
|
+
private _reconcileParticipantSessionStates;
|
|
337
|
+
private _updateParticipantExternalId;
|
|
338
|
+
private _updateParticipantSessionState;
|
|
339
|
+
private _emitParticipantEffectiveStatusIfSessionOverridesTransport;
|
|
314
340
|
private _onAddedParticipant;
|
|
315
341
|
private _onJoinedParticipant;
|
|
316
342
|
private _onClosedConversation;
|
|
@@ -347,6 +373,7 @@ export default class Conversation extends EventEmitter {
|
|
|
347
373
|
private _onPinParticipant;
|
|
348
374
|
private _onOptionsChanged;
|
|
349
375
|
private _onNetworkStatus;
|
|
376
|
+
private _emitHeldParticipantsStatus;
|
|
350
377
|
private _onRemoteStreamSecond;
|
|
351
378
|
/**
|
|
352
379
|
* Коллбек, вызывающийся при получении/остановке стрима от AnimojiReceiver
|
|
@@ -367,6 +394,7 @@ export default class Conversation extends EventEmitter {
|
|
|
367
394
|
private _onSpeakerChanged;
|
|
368
395
|
private _onTransportStateChanged;
|
|
369
396
|
private _onTransportLocalStateChanged;
|
|
397
|
+
private _areTransportParticipantsOnHold;
|
|
370
398
|
private _onRemoteTrackAdded;
|
|
371
399
|
private _onRemoteTrackRemoved;
|
|
372
400
|
private _removeAudioTrack;
|
|
@@ -396,6 +424,7 @@ export default class Conversation extends EventEmitter {
|
|
|
396
424
|
private _onFeedback;
|
|
397
425
|
private _onDecorativeParticipantIdChanged;
|
|
398
426
|
private _onVideoSuspendSuggest;
|
|
427
|
+
private _onParticipantHold;
|
|
399
428
|
private _isMe;
|
|
400
429
|
private _getMuteStatesForRoomId;
|
|
401
430
|
private _getMuteStatesForCurrentRoom;
|
|
@@ -405,6 +434,8 @@ export default class Conversation extends EventEmitter {
|
|
|
405
434
|
private _getParticipants;
|
|
406
435
|
private _getParticipant;
|
|
407
436
|
}
|
|
437
|
+
declare function _resetPendingInstance(): void;
|
|
438
|
+
export { _resetPendingInstance };
|
|
408
439
|
export declare class UpdateDisplayLayoutError extends Error {
|
|
409
440
|
readonly participantErrors: {
|
|
410
441
|
externalId: ExternalParticipantId;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import ConversationResponse from '../types/ConversationResponse';
|
|
2
|
+
export type ConversationResponseSource = 'startConversation' | 'joinConversation' | 'joinConversationByLink' | 'fastStart' | 'fastJoin';
|
|
3
|
+
export declare function assertValidConversationResponse(response: ConversationResponse | null | undefined, source: ConversationResponseSource): void;
|
package/classes/DebugInfo.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
1
2
|
import { Participant, ParticipantId } from '../types/Participant';
|
|
2
3
|
import { StatResult } from '../types/Statistics';
|
|
3
4
|
import EventEmitter from './EventEmitter';
|
|
4
5
|
export default class DebugInfo extends EventEmitter {
|
|
5
6
|
private _lastMemoryStat;
|
|
7
|
+
private readonly _debug;
|
|
8
|
+
constructor(debug?: DebugLogger);
|
|
6
9
|
onRemoteDataStats(stats: StatResult, participants: Record<ParticipantId, Participant>): void;
|
|
7
10
|
_calcMemory(): void;
|
|
8
11
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import BaseApi from '../abstract/BaseApi';
|
|
2
|
+
import type { DebugLogger } from '../static/Debug';
|
|
3
|
+
import { DisplayLayoutRequest, ParticipantLayout } from '../types/ParticipantLayout';
|
|
4
|
+
import { Participant, ParticipantId } from '../types/Participant';
|
|
5
|
+
type DisplayLayoutRequesterParams = {
|
|
6
|
+
api: BaseApi;
|
|
7
|
+
debug: DebugLogger;
|
|
8
|
+
getParticipants: () => Promise<Record<ParticipantId, Participant>>;
|
|
9
|
+
isMe: (participantId: ParticipantId) => boolean;
|
|
10
|
+
updateDisplayLayout: (layouts: ParticipantLayout[]) => Promise<void>;
|
|
11
|
+
};
|
|
12
|
+
export default class DisplayLayoutRequester {
|
|
13
|
+
private readonly _api;
|
|
14
|
+
private readonly _debug;
|
|
15
|
+
private readonly _getParticipants;
|
|
16
|
+
private readonly _isMe;
|
|
17
|
+
private readonly _updateDisplayLayout;
|
|
18
|
+
private _requestedLayouts;
|
|
19
|
+
private _uncertainLayouts;
|
|
20
|
+
private _pendingRequests;
|
|
21
|
+
private _pendingPromises;
|
|
22
|
+
private _lastRequests;
|
|
23
|
+
private _timer;
|
|
24
|
+
private _inFlight;
|
|
25
|
+
private _lastFlushAt;
|
|
26
|
+
private _generation;
|
|
27
|
+
private _forceNextFlush;
|
|
28
|
+
constructor({ api, debug, getParticipants, isMe, updateDisplayLayout }: DisplayLayoutRequesterParams);
|
|
29
|
+
request(requests: DisplayLayoutRequest[]): Promise<void>;
|
|
30
|
+
resend(): void;
|
|
31
|
+
cleanupParticipant(participantId: ParticipantId): void;
|
|
32
|
+
clear(): void;
|
|
33
|
+
private _schedule;
|
|
34
|
+
private _flush;
|
|
35
|
+
private _getRequestLayouts;
|
|
36
|
+
private _getDiff;
|
|
37
|
+
private _isChanged;
|
|
38
|
+
}
|
|
39
|
+
export {};
|
package/classes/MediaSource.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { IEffect } from '@vkontakte/calls-video-effects';
|
|
2
2
|
import EventEmitter from '../classes/EventEmitter';
|
|
3
3
|
import MediaOption from '../enums/MediaOption';
|
|
4
|
+
import { type DebugLogger } from '../static/Debug';
|
|
4
5
|
import MediaSettings, { IVideoDimentions } from '../types/MediaSettings';
|
|
5
6
|
import { ScreenCaptureSettings } from '../types/ScreenCaptureSettings';
|
|
7
|
+
import StatsLogger from './StatsLogger';
|
|
6
8
|
export declare const enum MediaSourceEvent {
|
|
7
9
|
SOURCE_CHANGED = "SOURCE_CHANGED",
|
|
8
10
|
SOURCE_READY = "SOURCE_READY",
|
|
@@ -45,6 +47,7 @@ export declare class MediaSource extends EventEmitter {
|
|
|
45
47
|
/** Трек аудио эффектов. Не изменяется на протяжении всего времени */
|
|
46
48
|
private _audioEffectsTrack;
|
|
47
49
|
private _mediaSettings;
|
|
50
|
+
private _lastMediaSettings;
|
|
48
51
|
private _videoStatusOnScreenCapturingEnabled;
|
|
49
52
|
private _effect;
|
|
50
53
|
private _audioEffectParams;
|
|
@@ -53,7 +56,9 @@ export declare class MediaSource extends EventEmitter {
|
|
|
53
56
|
private _animojiEnabled;
|
|
54
57
|
/** вычисляем низкую производительность видео эффектов */
|
|
55
58
|
private readonly _videoEffectsFpsLimiter?;
|
|
56
|
-
|
|
59
|
+
private readonly _debug;
|
|
60
|
+
private readonly _logger;
|
|
61
|
+
constructor(debug?: DebugLogger, logger?: StatsLogger | null);
|
|
57
62
|
get cameraVideoTrack(): MediaStreamTrack | null;
|
|
58
63
|
set cameraVideoTrack(track: MediaStreamTrack | null);
|
|
59
64
|
request(mediaOptions?: MediaOption[], needEmptyTracks?: boolean): Promise<void>;
|
|
@@ -63,7 +68,11 @@ export declare class MediaSource extends EventEmitter {
|
|
|
63
68
|
getSendAudioTrack(): MediaStreamTrack | null;
|
|
64
69
|
get isAnimojiRequested(): boolean;
|
|
65
70
|
addTrackToPeerConnection(pc: RTCPeerConnection, observer: boolean, noDataChannel: boolean): void;
|
|
71
|
+
/**
|
|
72
|
+
* @deprecated Используйте гетер mediaSettings
|
|
73
|
+
*/
|
|
66
74
|
getMediaSettings(): MediaSettings;
|
|
75
|
+
get mediaSettings(): MediaSettings;
|
|
67
76
|
changeDevice(kind: MediaDeviceKind): Promise<void>;
|
|
68
77
|
/**
|
|
69
78
|
* Установка кастомного стрима для видео, например внешний шаринг экрана
|
|
@@ -91,6 +100,8 @@ export declare class MediaSource extends EventEmitter {
|
|
|
91
100
|
private _setEffect;
|
|
92
101
|
private _stopEffect;
|
|
93
102
|
destroy(): void;
|
|
103
|
+
stopLocalMedia(): Promise<void>;
|
|
104
|
+
resumeLocalMedia(lastActiveMediaSettings?: MediaSettings): Promise<void>;
|
|
94
105
|
toggleScreenCapturing(settings: ScreenCaptureSettings): Promise<void>;
|
|
95
106
|
disableScreenCapturing(): Promise<void>;
|
|
96
107
|
private videoTrackMuteHandler;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
1
2
|
import { ParticipantStreamDescription } from '../types/ParticipantStreamDescription';
|
|
2
3
|
import SignalingMessage from '../types/SignalingMessage';
|
|
3
4
|
export declare class ParticipantIdRegistry {
|
|
4
5
|
private streamDescriptionByCompactId;
|
|
5
6
|
private compactIdByStreamDescription;
|
|
7
|
+
private readonly _debug;
|
|
8
|
+
constructor(debug?: DebugLogger);
|
|
6
9
|
getStreamDescription(compactedId: number): ParticipantStreamDescription | undefined;
|
|
7
10
|
getCompactId(streamDescription: string): number | undefined;
|
|
8
11
|
handleMessage(data: ArrayBuffer): SignalingMessage | null;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
1
2
|
import { NetworkStatReport } from '../types/NetworkStatReport';
|
|
2
3
|
import ParticipantLayout, { RequestKeyFrame, StopStream } from '../types/ParticipantLayout';
|
|
3
4
|
import { RequestAsr } from '../types/RequestAsr';
|
|
@@ -10,6 +11,8 @@ import { SharingStatReport } from './screenshare/SharingStatReport';
|
|
|
10
11
|
import { ParticipantIdRegistry } from './ParticipantIdRegistry';
|
|
11
12
|
export declare class ProducerCommandSerializationService {
|
|
12
13
|
private participantIdRegistry;
|
|
14
|
+
private readonly _debug;
|
|
15
|
+
constructor(debug?: DebugLogger);
|
|
13
16
|
setParticipantIdRegistry(participantIdRegistry: ParticipantIdRegistry): void;
|
|
14
17
|
serializeUpdateDisplayLayout(sequenceNumber: number, layouts: {
|
|
15
18
|
[key: string]: ParticipantLayout | StopStream | RequestKeyFrame;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
1
2
|
import SignalingMessage from '../types/SignalingMessage';
|
|
2
3
|
export declare class SignalingActor {
|
|
3
4
|
private processor;
|
|
4
5
|
private queue;
|
|
5
6
|
private isProcessing;
|
|
6
|
-
|
|
7
|
+
private readonly _debug;
|
|
8
|
+
constructor(processor: (message: SignalingMessage) => Promise<unknown> | unknown, debug?: DebugLogger);
|
|
7
9
|
add(message: SignalingMessage): void;
|
|
8
10
|
private processQueue;
|
|
9
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ParticipantId } from '../types/Participant';
|
|
2
2
|
import EventEmitter from './EventEmitter';
|
|
3
|
-
import
|
|
3
|
+
import TransportTopology from '../enums/TransportTopology';
|
|
4
|
+
import { Transport } from './transport/Transport';
|
|
4
5
|
import { VolumeLevel } from './VolumeDetector';
|
|
5
6
|
import { VolumesDetector } from './VolumesDetector';
|
|
6
7
|
export declare const enum SpeakerDetectorEvent {
|
|
@@ -1,19 +1,28 @@
|
|
|
1
|
+
import { type DebugLogger } from '../static/Debug';
|
|
1
2
|
import MediaSettings from '../types/MediaSettings';
|
|
2
3
|
import { Participant, ParticipantId } from '../types/Participant';
|
|
3
4
|
import EventEmitter from './EventEmitter';
|
|
5
|
+
import StatsLogger from './StatsLogger';
|
|
4
6
|
import { Transport } from './transport/Transport';
|
|
5
7
|
import { VolumesDetector } from './VolumesDetector';
|
|
6
8
|
export default class SpecListener extends EventEmitter {
|
|
7
9
|
private _transport;
|
|
8
10
|
private _volumes;
|
|
9
11
|
private readonly _participants;
|
|
12
|
+
private readonly _debug;
|
|
13
|
+
private readonly _logger;
|
|
10
14
|
private _connectionTimeout;
|
|
15
|
+
private _connectionTimeoutSuppressed;
|
|
11
16
|
private _volumeTimeout;
|
|
12
|
-
constructor(transport: Transport, volumesDetector: VolumesDetector, participants: Record<ParticipantId, Participant
|
|
17
|
+
constructor(transport: Transport, volumesDetector: VolumesDetector, participants: Record<ParticipantId, Participant>, debug?: DebugLogger, logger?: StatsLogger | null);
|
|
13
18
|
destroy(): void;
|
|
14
19
|
onChangeRemoteMediaSettings(participantId: ParticipantId, mediaSettings: MediaSettings): void;
|
|
20
|
+
onParticipantHoldChanged(): void;
|
|
21
|
+
private _getConnectionTimeout;
|
|
22
|
+
private _getVolumeTimeout;
|
|
15
23
|
private _onTransportStateChanged;
|
|
16
24
|
private _onVolumesDetected;
|
|
17
25
|
private _onConnectionTimeout;
|
|
26
|
+
private _reportConnectionTimeout;
|
|
18
27
|
private _onVolumeTimeout;
|
|
19
28
|
}
|
|
@@ -4,33 +4,23 @@ import StatLog from '../enums/StatLog';
|
|
|
4
4
|
/**
|
|
5
5
|
* Класс отвечает за отправку различной информации в сервис статистики (события, статистика и подобное)
|
|
6
6
|
*/
|
|
7
|
-
export default class
|
|
8
|
-
private static _instance;
|
|
9
|
-
private static _conversationIdProvider;
|
|
10
|
-
static setConversationIdProvider(provider: () => string | null): void;
|
|
11
|
-
static create(api: BaseApi, externalLogger: BaseLogger | null): void;
|
|
12
|
-
static log(name: StatLog, value?: string, immediately?: boolean): void;
|
|
13
|
-
static logClientStats(params: Record<string, string | number | boolean | undefined | null>, immediately?: boolean): void;
|
|
14
|
-
static logClientEvent(params: Record<string, string | number | boolean | undefined | null>, immediately?: boolean): void;
|
|
15
|
-
static destroy(): void;
|
|
7
|
+
export default class StatsLogger extends BaseLogger {
|
|
16
8
|
private readonly _externalLogger;
|
|
17
9
|
private readonly _api;
|
|
10
|
+
private readonly _conversationIdProvider;
|
|
18
11
|
private readonly _batchInterval;
|
|
19
12
|
private _batchedClientStats;
|
|
20
|
-
private _batchedClientEvents;
|
|
21
13
|
private _batchTimeout;
|
|
22
14
|
private _serverTimeDelta;
|
|
23
|
-
constructor(api: BaseApi, externalLogger: BaseLogger | null);
|
|
15
|
+
constructor(api: BaseApi, externalLogger: BaseLogger | null, conversationIdProvider: () => string | null);
|
|
24
16
|
log(name: StatLog, value?: string, immediately?: boolean): void;
|
|
25
17
|
logClientStats(data: Record<string, string | number | boolean | undefined | null>, immediately?: boolean): void;
|
|
26
|
-
logClientEvent(data: Record<string, string | number | boolean | undefined | null>, immediately?: boolean): void;
|
|
27
18
|
destroy(): void;
|
|
28
19
|
private _getConversationId;
|
|
29
20
|
private _sendBatch;
|
|
30
21
|
private _startTimeout;
|
|
31
22
|
private _stopTimeout;
|
|
32
23
|
private _sendClientStats;
|
|
33
|
-
private _sendClientEvents;
|
|
34
24
|
private _calculateServerTimeDelta;
|
|
35
25
|
private _now;
|
|
36
26
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { VideoEffects } from '@vkontakte/calls-video-effects';
|
|
2
|
+
import { type DebugLogger } from '../static/Debug';
|
|
2
3
|
import EventEmitter from './EventEmitter';
|
|
3
4
|
export declare enum VideoEffectsFpsLimiterEvent {
|
|
4
5
|
FpsLimit = "fps-limit"
|
|
@@ -10,6 +11,8 @@ export declare class VideoEffectsFpsLimiter extends EventEmitter {
|
|
|
10
11
|
private _fpsMeterUnsubscribe;
|
|
11
12
|
private readonly _fpsHistory;
|
|
12
13
|
private _fpsLimitCursor;
|
|
14
|
+
private readonly _debug;
|
|
15
|
+
constructor(debug?: DebugLogger);
|
|
13
16
|
get fpsLimit(): number;
|
|
14
17
|
watch(videoEffect: VideoEffects | null): void;
|
|
15
18
|
private _handleFpsMeter;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
1
2
|
import { AsrTranscription } from '../../types/Asr';
|
|
2
3
|
import { ParticipantIdRegistry } from '../ParticipantIdRegistry';
|
|
3
4
|
export declare class AsrReceiver {
|
|
@@ -5,7 +6,8 @@ export declare class AsrReceiver {
|
|
|
5
6
|
private readonly _participantIdRegistry;
|
|
6
7
|
private readonly _asrCallback;
|
|
7
8
|
private readonly _textDecoder;
|
|
8
|
-
|
|
9
|
+
private readonly _debug;
|
|
10
|
+
constructor(datachannel: RTCDataChannel, participantIdRegistry: ParticipantIdRegistry, callback: (asr: AsrTranscription) => void, debug?: DebugLogger);
|
|
9
11
|
private static parse;
|
|
10
12
|
private _onDataChannelMessage;
|
|
11
13
|
destroy(): void;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
2
|
+
import StatsLogger from '../StatsLogger';
|
|
1
3
|
import IDecoder from './IDecoder';
|
|
2
4
|
import WorkerBase from './WorkerBase';
|
|
3
5
|
export default class LibVPxDecoder extends WorkerBase implements IDecoder {
|
|
6
|
+
constructor(debug?: DebugLogger, logger?: StatsLogger | null);
|
|
4
7
|
init(onFrameImage: (image: ImageData) => void, onFrameError: (error: unknown) => void, onKeyFrameRequested: () => void): Promise<void>;
|
|
5
8
|
decodeFrame(timestamp: number, data: Uint8Array, isVP9: boolean, keyFrame?: boolean): void;
|
|
6
9
|
destroy(): void;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
2
|
+
import StatsLogger from '../StatsLogger';
|
|
1
3
|
import IEncoder from './IEncoder';
|
|
2
4
|
import { OnFrameCallback } from './Types';
|
|
3
5
|
import WorkerBase from './WorkerBase';
|
|
@@ -13,7 +15,7 @@ export default class LibVPxEncoder extends WorkerBase implements IEncoder {
|
|
|
13
15
|
private _canvasCtx;
|
|
14
16
|
private _frameReadTimeout;
|
|
15
17
|
private _lastFrame;
|
|
16
|
-
constructor(sourceTrack: MediaStreamTrack, onFrame: OnFrameCallback, useCongestionControl: boolean, maxBitrate: number);
|
|
18
|
+
constructor(sourceTrack: MediaStreamTrack, onFrame: OnFrameCallback, useCongestionControl: boolean, maxBitrate: number, debug?: DebugLogger, logger?: StatsLogger | null);
|
|
17
19
|
private _createDom;
|
|
18
20
|
private _removeDom;
|
|
19
21
|
private _createStream;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
2
|
+
import StatsLogger from '../StatsLogger';
|
|
1
3
|
import IDecoder from './IDecoder';
|
|
2
4
|
import WorkerBase from './WorkerBase';
|
|
3
5
|
export default class WebCodecsDecoder extends WorkerBase implements IDecoder {
|
|
6
|
+
constructor(debug?: DebugLogger, logger?: StatsLogger | null);
|
|
4
7
|
init(onFrameImage: (frame: VideoFrame) => void, onFrameError: (error: unknown) => void, onKeyFrameRequested: () => void): Promise<void>;
|
|
5
8
|
decodeFrame(timestamp: number, data: Uint8Array, isVP9: boolean, keyFrame?: boolean): void;
|
|
6
9
|
destroy(): void;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
2
|
+
import StatsLogger from '../StatsLogger';
|
|
1
3
|
import IEncoder from './IEncoder';
|
|
2
4
|
import { OnFrameCallback } from './Types';
|
|
3
5
|
import WorkerBase from './WorkerBase';
|
|
@@ -9,7 +11,7 @@ export default class WebCodecsEncoder extends WorkerBase implements IEncoder {
|
|
|
9
11
|
private readonly _maxBitrate;
|
|
10
12
|
private readonly _useCbr;
|
|
11
13
|
private readonly _frameRate;
|
|
12
|
-
constructor(sourceTrack: MediaStreamTrack, onFrame: OnFrameCallback, useCongestionControl: boolean, maxBitrate: number, useCbr: boolean, frameRate: number);
|
|
14
|
+
constructor(sourceTrack: MediaStreamTrack, onFrame: OnFrameCallback, useCongestionControl: boolean, maxBitrate: number, useCbr: boolean, frameRate: number, debug?: DebugLogger, logger?: StatsLogger | null);
|
|
13
15
|
init(): Promise<void>;
|
|
14
16
|
requestFrame(keyFrame?: boolean): void;
|
|
15
17
|
setBitrate(bitrate: number, useCbr: boolean, fps: number): void;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
2
|
+
import StatsLogger from '../StatsLogger';
|
|
1
3
|
export default abstract class WorkerBase {
|
|
2
4
|
protected _worker: Worker | null;
|
|
5
|
+
protected readonly _debug: DebugLogger;
|
|
6
|
+
protected readonly _logger: StatsLogger | null;
|
|
7
|
+
protected constructor(debug?: DebugLogger, logger?: StatsLogger | null);
|
|
3
8
|
protected _createWorker(workerFunctionData: string, onFrame: (data: any) => void, workerArgs?: any[], initArgs?: {
|
|
4
9
|
[key: string]: any;
|
|
5
10
|
}, transfer?: any[]): Promise<void>;
|
|
@@ -7,5 +12,7 @@ export default abstract class WorkerBase {
|
|
|
7
12
|
protected _sendToWorker(type: string, data?: {
|
|
8
13
|
[key: string]: any;
|
|
9
14
|
}, transfer?: any[]): void;
|
|
15
|
+
private _formatWorkerError;
|
|
16
|
+
private _formatWorkerMessageError;
|
|
10
17
|
static isBrowserSupported(): boolean;
|
|
11
18
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
1
2
|
import { ParticipantId } from '../../types/Participant';
|
|
2
3
|
import { IScreenShareStat } from '../../types/ScreenSharingStat';
|
|
3
4
|
import { StatScreenShareFirstFrame } from '../stat/StatScreenShareFirstFrame';
|
|
5
|
+
import { StatAggregator } from '../stat/StatAggregator';
|
|
4
6
|
import { FrameChunk } from './Utils';
|
|
5
7
|
export type IOnStat = (stat: IScreenShareStat) => void;
|
|
6
8
|
export type IOnStream = (stream: MediaStream) => void;
|
|
@@ -10,8 +12,9 @@ export declare abstract class BaseStreamBuilder {
|
|
|
10
12
|
protected readonly _onStat: IOnStat;
|
|
11
13
|
protected readonly _onKeyFrameRequested?: VoidFunction;
|
|
12
14
|
protected readonly _statScreenShareFirstFrame: StatScreenShareFirstFrame;
|
|
15
|
+
protected readonly _debug: DebugLogger;
|
|
13
16
|
protected _chunks: FrameChunk[];
|
|
14
|
-
protected constructor(participantId: ParticipantId, onStream: IOnStream, onStat: IOnStat, onKeyFrameRequested?: VoidFunction);
|
|
17
|
+
protected constructor(participantId: ParticipantId, onStream: IOnStream, onStat: IOnStat, statAggregator: StatAggregator | null, onKeyFrameRequested?: VoidFunction, debug?: DebugLogger);
|
|
15
18
|
appendChunk(chunk: FrameChunk): void;
|
|
16
19
|
destroy(): void;
|
|
17
20
|
protected abstract _processFrame(frame: FrameData): void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
1
2
|
import BaseRenderer from './BaseRenderer';
|
|
2
3
|
export default class CanvasRenderer extends BaseRenderer {
|
|
3
4
|
private readonly _useImageBitmap;
|
|
@@ -5,7 +6,8 @@ export default class CanvasRenderer extends BaseRenderer {
|
|
|
5
6
|
private _canvasContext;
|
|
6
7
|
private _stream;
|
|
7
8
|
private _track;
|
|
8
|
-
|
|
9
|
+
private readonly _debug;
|
|
10
|
+
constructor(onStream: (stream: MediaStream) => void, debug?: DebugLogger);
|
|
9
11
|
private _createStream;
|
|
10
12
|
private _removeStream;
|
|
11
13
|
private _requestCanvasFrame;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { type DebugLogger } from '../../static/Debug';
|
|
1
2
|
import { ParticipantId } from '../../types/Participant';
|
|
3
|
+
import StatsLogger from '../StatsLogger';
|
|
2
4
|
import { ParticipantIdRegistry } from '../ParticipantIdRegistry';
|
|
5
|
+
import { StatAggregator } from '../stat/StatAggregator';
|
|
3
6
|
import { IOnStat } from './BaseStreamBuilder';
|
|
4
7
|
export default class ScreenCaptureReceiver {
|
|
5
8
|
private readonly _datachannel;
|
|
@@ -8,7 +11,10 @@ export default class ScreenCaptureReceiver {
|
|
|
8
11
|
private _onStream;
|
|
9
12
|
private _onEos;
|
|
10
13
|
private _onStat;
|
|
11
|
-
|
|
14
|
+
private readonly _debug;
|
|
15
|
+
private readonly _logger;
|
|
16
|
+
private readonly _statAggregator;
|
|
17
|
+
constructor(datachannel: RTCDataChannel, participantIdRegistry: ParticipantIdRegistry, onStream: (streamId: string, stream: MediaStream) => void, onEos: (streamId: string) => void, onStat: IOnStat, statAggregator?: StatAggregator | null, debug?: DebugLogger, logger?: StatsLogger | null);
|
|
12
18
|
private _onDataChannelMessage;
|
|
13
19
|
/**
|
|
14
20
|
* Отправить запрос ключевого кадра в datachannel.
|