@vkontakte/calls-sdk 2.8.11-dev.3d9bb708.0 → 2.8.11-dev.41bc9113.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.
Files changed (72) hide show
  1. package/CallsSDK.d.ts +51 -23
  2. package/abstract/BaseApi.d.ts +3 -5
  3. package/abstract/BaseSignaling.d.ts +5 -7
  4. package/calls-sdk.cjs.js +16 -13
  5. package/calls-sdk.esm.js +11757 -13
  6. package/classes/AudioFix.d.ts +5 -1
  7. package/classes/AudioOutput.d.ts +5 -1
  8. package/classes/CallRegistry.d.ts +8 -1
  9. package/classes/Conversation.d.ts +14 -6
  10. package/classes/DebugInfo.d.ts +3 -0
  11. package/classes/DisplayLayoutRequester.d.ts +39 -0
  12. package/classes/ExternalIdCache.d.ts +19 -0
  13. package/classes/MediaSource.d.ts +11 -3
  14. package/classes/ParticipantIdRegistry.d.ts +3 -0
  15. package/classes/ProducerCommandSerializationService.d.ts +3 -0
  16. package/classes/SignalingActor.d.ts +3 -1
  17. package/classes/SpeakerDetector.d.ts +2 -1
  18. package/classes/SpecListener.d.ts +10 -1
  19. package/classes/StatsLogger.d.ts +29 -0
  20. package/classes/VideoEffectsFpsLimiter.d.ts +3 -0
  21. package/classes/asr/AsrReceiver.d.ts +3 -1
  22. package/classes/codec/LibVPxDecoder.d.ts +3 -0
  23. package/classes/codec/LibVPxEncoder.d.ts +3 -1
  24. package/classes/codec/WebCodecsDecoder.d.ts +3 -0
  25. package/classes/codec/WebCodecsEncoder.d.ts +3 -1
  26. package/classes/codec/WorkerBase.d.ts +5 -0
  27. package/classes/screenshare/BaseStreamBuilder.d.ts +4 -1
  28. package/classes/screenshare/CanvasRenderer.d.ts +3 -1
  29. package/classes/screenshare/ScreenCaptureReceiver.d.ts +7 -1
  30. package/classes/screenshare/ScreenCaptureSender.d.ts +5 -1
  31. package/classes/screenshare/ScreenCongestionControl.d.ts +3 -1
  32. package/classes/screenshare/StreamBuilder.d.ts +5 -1
  33. package/classes/screenshare/TrackGeneratorRenderer.d.ts +3 -1
  34. package/classes/screenshare/WebmBuilder.d.ts +3 -1
  35. package/classes/stat/CodecStatsAggregator.d.ts +7 -7
  36. package/classes/stat/ConversationStats.d.ts +21 -0
  37. package/classes/stat/StatAggregator.d.ts +6 -6
  38. package/classes/stat/StatFirstMediaReceived.d.ts +4 -1
  39. package/classes/stat/StatPings.d.ts +9 -9
  40. package/classes/stat/StatScreenShareFirstFrame.d.ts +3 -1
  41. package/classes/stat/StatSignalingCommands.d.ts +8 -8
  42. package/classes/transport/BaseTransport.d.ts +1 -1
  43. package/classes/transport/DirectStatReporter.d.ts +3 -1
  44. package/classes/transport/DirectTransport.d.ts +9 -1
  45. package/classes/transport/PerfStatReporter.d.ts +5 -1
  46. package/classes/transport/ServerTransport.d.ts +10 -2
  47. package/classes/transport/Transport.d.ts +11 -14
  48. package/default/Api.d.ts +4 -14
  49. package/default/Signaling.d.ts +15 -4
  50. package/enums/SignalingNotification.d.ts +2 -1
  51. package/enums/TransportState.d.ts +10 -0
  52. package/enums/TransportTopology.d.ts +5 -0
  53. package/package.json +1 -1
  54. package/static/Capabilities.d.ts +5 -0
  55. package/static/Debug.d.ts +27 -8
  56. package/static/External.d.ts +112 -61
  57. package/static/Params.d.ts +80 -60
  58. package/static/Utils.d.ts +3 -2
  59. package/static/WebRTCUtils.d.ts +6 -4
  60. package/types/Capabilities.d.ts +24 -0
  61. package/types/Conversation.d.ts +1 -1
  62. package/types/FastStart.d.ts +1 -0
  63. package/types/Participant.d.ts +1 -0
  64. package/types/ParticipantLayout.d.ts +33 -0
  65. package/types/PerfStatReporter.d.ts +2 -1
  66. package/types/SignalingMessage.d.ts +8 -1
  67. package/types/Statistics.d.ts +1 -1
  68. package/types/WebTransport.d.ts +1 -0
  69. package/utils/DebugStorage.d.ts +100 -1
  70. package/classes/Logger.d.ts +0 -41
  71. package/classes/stat/EventMetricsService.d.ts +0 -9
  72. package/static/ConversationDebugLogger.d.ts +0 -13
@@ -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;
@@ -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
- constructor(statFirstMediaReceived: StatFirstMediaReceived, allowMultipleTracks?: boolean);
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;
@@ -1,11 +1,13 @@
1
1
  import Conversation from './Conversation';
2
+ import MediaSettings from '../types/MediaSettings';
2
3
  export interface HoldableConversation extends Conversation {
3
4
  id: string;
4
- hold(hold: boolean): Promise<void>;
5
+ hold(hold: boolean, lastActiveMediaSettings?: MediaSettings): Promise<void>;
5
6
  }
6
7
  export declare class CallRegistry {
7
8
  private _conversations;
8
9
  private _activeId;
10
+ private _mutex;
9
11
  add(conversation: HoldableConversation): void;
10
12
  remove(id: string | null): void;
11
13
  get(id: string): HoldableConversation | undefined;
@@ -13,6 +15,11 @@ export declare class CallRegistry {
13
15
  getActiveId(): string | null;
14
16
  has(id: string): boolean;
15
17
  getAll(): HoldableConversation[];
18
+ get callsLength(): number;
16
19
  setActive(id: string): Promise<void>;
20
+ setHold(id: string): Promise<void>;
21
+ switchCall(id: string): Promise<void>;
17
22
  clear(): void;
18
23
  }
24
+ declare const callRegistry: CallRegistry;
25
+ export { callRegistry };
@@ -20,28 +20,30 @@ 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';
27
27
  import { ScreenCaptureSettings } from '../types/ScreenCaptureSettings';
28
28
  import SignalingMessage from '../types/SignalingMessage';
29
29
  import { WaitingHallResponse } from '../types/WaitingHall';
30
- import { CallRegistry } from './CallRegistry';
31
30
  import EventEmitter from './EventEmitter';
32
31
  export default class Conversation extends EventEmitter {
33
32
  private readonly _api;
34
33
  private readonly _signaling;
35
34
  private readonly _signalingActor;
35
+ private readonly _displayLayoutRequester;
36
36
  private _mediaSource;
37
37
  private _conversation;
38
38
  private _myLastRequestedLayouts;
39
39
  private _state;
40
+ private _previousState;
40
41
  private _participantState;
41
42
  private _participants;
42
43
  private _pendingParticipants;
43
44
  private _transport;
44
45
  private _debugInfo;
46
+ private readonly _debug;
45
47
  private _volumesDetector;
46
48
  private _speakerDetector;
47
49
  private _localVolumeDetector;
@@ -50,10 +52,12 @@ export default class Conversation extends EventEmitter {
50
52
  private _lastSignalledActiveSpeakerId;
51
53
  private _isRealTimeAsrRequested;
52
54
  private _serverSettings;
55
+ private _serverTimeOffset;
53
56
  private _delayedHangup;
54
57
  private _abortController;
55
58
  private readonly _onUnload;
56
59
  private readonly _audioOutput;
60
+ private readonly _stats;
57
61
  private _lastStalled;
58
62
  private _audioMixStalled;
59
63
  private _audioFix;
@@ -72,6 +76,9 @@ export default class Conversation extends EventEmitter {
72
76
  get externalId(): ExternalParticipantId | undefined;
73
77
  get mediaSettings(): MediaSettings | undefined;
74
78
  get isCallHeld(): boolean;
79
+ static debugSessionId(): string | null;
80
+ static getSyncedTime(): number;
81
+ get debugSessionId(): string | null;
75
82
  onStart({ opponentIds, opponentType, mediaOptions, payload, joiningAllowed, requireAuthToJoin, onlyAdminCanShareMovie, externalIds, onFastStart, conversationId, }: ConversationOnStartParams): Promise<ConversationData>;
76
83
  onJoin(joinArgs: {
77
84
  conversationId?: string;
@@ -202,11 +209,12 @@ export default class Conversation extends EventEmitter {
202
209
  */
203
210
  changePriorities(priorities: ParticipantPriority[]): Promise<void>;
204
211
  changeParticipantState(state: ParticipantStateData, compositeUserId?: CompositeUserId): Promise<void>;
205
- hold(hold: boolean): Promise<void>;
212
+ hold(hold: boolean, lastActiveMediaSettings?: MediaSettings): Promise<void>;
206
213
  putHandsDown(): Promise<void>;
207
214
  requestKeyFrame(participantStreamDescription: ParticipantStreamDescription): Promise<void | SignalingMessage>;
208
215
  requestTestMode(consumerCommand: string, producerCommand: string): Promise<void>;
209
216
  updateDisplayLayout(layouts: ParticipantLayout[]): Promise<void>;
217
+ requestDisplayLayout(requests: DisplayLayoutRequest[]): Promise<void>;
210
218
  feedback(key: string): Promise<SignalingMessage>;
211
219
  userFeedbackStats(userResponse: number, reason?: string, groupCallUsersCount?: number): void;
212
220
  sendClientEvent(eventType: string, eventData?: Record<string, string | number | boolean>, immediately?: boolean): void;
@@ -282,7 +290,6 @@ export default class Conversation extends EventEmitter {
282
290
  startStream(isRecord?: boolean, name?: string | null, movieId?: string | null, privacy?: 'PUBLIC' | 'FRIENDS' | 'DIRECT_LINK', groupId?: string | null, roomId?: number | null): Promise<undefined>;
283
291
  stopStream(roomId?: number | null, remove?: boolean): Promise<undefined>;
284
292
  publishStream(roomId?: number | null): Promise<undefined>;
285
- recordSetConf(king?: ParticipantId, pawns?: ParticipantId[], hideParticipantCount?: boolean, roomId?: number | null): Promise<void>;
286
293
  getStreamInfo(): Promise<{
287
294
  movieId: any;
288
295
  preview: any;
@@ -347,6 +354,7 @@ export default class Conversation extends EventEmitter {
347
354
  private _onPinParticipant;
348
355
  private _onOptionsChanged;
349
356
  private _onNetworkStatus;
357
+ private _emitHeldParticipantsStatus;
350
358
  private _onRemoteStreamSecond;
351
359
  /**
352
360
  * Коллбек, вызывающийся при получении/остановке стрима от AnimojiReceiver
@@ -367,6 +375,7 @@ export default class Conversation extends EventEmitter {
367
375
  private _onSpeakerChanged;
368
376
  private _onTransportStateChanged;
369
377
  private _onTransportLocalStateChanged;
378
+ private _areTransportParticipantsOnHold;
370
379
  private _onRemoteTrackAdded;
371
380
  private _onRemoteTrackRemoved;
372
381
  private _removeAudioTrack;
@@ -396,6 +405,7 @@ export default class Conversation extends EventEmitter {
396
405
  private _onFeedback;
397
406
  private _onDecorativeParticipantIdChanged;
398
407
  private _onVideoSuspendSuggest;
408
+ private _onParticipantHold;
399
409
  private _isMe;
400
410
  private _getMuteStatesForRoomId;
401
411
  private _getMuteStatesForCurrentRoom;
@@ -405,8 +415,6 @@ export default class Conversation extends EventEmitter {
405
415
  private _getParticipants;
406
416
  private _getParticipant;
407
417
  }
408
- declare const _callRegistry: CallRegistry;
409
- export { _callRegistry };
410
418
  declare function _resetPendingInstance(): void;
411
419
  export { _resetPendingInstance };
412
420
  export declare class UpdateDisplayLayoutError extends Error {
@@ -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 {};
@@ -0,0 +1,19 @@
1
+ import { ExternalId, ExternalParticipantId } from '../types/ExternalId';
2
+ import { CompositeUserId, OkUserId, ParticipantId } from '../types/Participant';
3
+ export declare class ExternalIdCache {
4
+ private _okIdToExternalId;
5
+ private _externalIdToOkId;
6
+ private _decorativeIdToInitialId;
7
+ private _initialIdToDecorativeId;
8
+ getOkId(externalId: ExternalId): OkUserId | null;
9
+ getExternalId(okId: OkUserId): ExternalParticipantId | null;
10
+ hasByExternalId(externalId: ExternalId): boolean;
11
+ hasByOkId(okId: OkUserId): boolean;
12
+ cache(participantId: OkUserId | CompositeUserId | ParticipantId, externalId: ExternalParticipantId): void;
13
+ mapDecorativeId(decorativeId: OkUserId | CompositeUserId | ParticipantId, initialId: OkUserId | CompositeUserId | ParticipantId): void;
14
+ unmapDecorativeId(initialId: OkUserId | CompositeUserId | ParticipantId): void;
15
+ getDecorativeIdByInitialId(initialId: OkUserId | CompositeUserId | ParticipantId): OkUserId | undefined;
16
+ replaceByInitialIdIdIfExists(id: OkUserId | CompositeUserId | ParticipantId): OkUserId;
17
+ getParticipantIdByExternalId(externalId: ExternalId): ParticipantId | null;
18
+ clear(): void;
19
+ }
@@ -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",
@@ -54,7 +56,9 @@ export declare class MediaSource extends EventEmitter {
54
56
  private _animojiEnabled;
55
57
  /** вычисляем низкую производительность видео эффектов */
56
58
  private readonly _videoEffectsFpsLimiter?;
57
- constructor();
59
+ private readonly _debug;
60
+ private readonly _logger;
61
+ constructor(debug?: DebugLogger, logger?: StatsLogger | null);
58
62
  get cameraVideoTrack(): MediaStreamTrack | null;
59
63
  set cameraVideoTrack(track: MediaStreamTrack | null);
60
64
  request(mediaOptions?: MediaOption[], needEmptyTracks?: boolean): Promise<void>;
@@ -64,6 +68,10 @@ export declare class MediaSource extends EventEmitter {
64
68
  getSendAudioTrack(): MediaStreamTrack | null;
65
69
  get isAnimojiRequested(): boolean;
66
70
  addTrackToPeerConnection(pc: RTCPeerConnection, observer: boolean, noDataChannel: boolean): void;
71
+ /**
72
+ * @deprecated Используйте гетер mediaSettings
73
+ */
74
+ getMediaSettings(): MediaSettings;
67
75
  get mediaSettings(): MediaSettings;
68
76
  changeDevice(kind: MediaDeviceKind): Promise<void>;
69
77
  /**
@@ -92,8 +100,8 @@ export declare class MediaSource extends EventEmitter {
92
100
  private _setEffect;
93
101
  private _stopEffect;
94
102
  destroy(): void;
95
- stopLocalMedia(): void;
96
- resumeLocalMedia(): Promise<void>;
103
+ stopLocalMedia(): Promise<void>;
104
+ resumeLocalMedia(lastActiveMediaSettings?: MediaSettings): Promise<void>;
97
105
  toggleScreenCapturing(settings: ScreenCaptureSettings): Promise<void>;
98
106
  disableScreenCapturing(): Promise<void>;
99
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
- constructor(processor: (message: SignalingMessage) => Promise<unknown> | unknown);
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 { Transport, TransportTopology } from './transport/Transport';
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
  }
@@ -0,0 +1,29 @@
1
+ import BaseApi from '../abstract/BaseApi';
2
+ import BaseLogger from '../abstract/BaseLogger';
3
+ import StatLog from '../enums/StatLog';
4
+ /**
5
+ * Класс отвечает за отправку различной информации в сервис статистики (события, статистика и подобное)
6
+ */
7
+ export default class StatsLogger extends BaseLogger {
8
+ private readonly _externalLogger;
9
+ private readonly _api;
10
+ private readonly _conversationIdProvider;
11
+ private readonly _batchInterval;
12
+ private _batchedClientStats;
13
+ private _batchedClientEvents;
14
+ private _batchTimeout;
15
+ private _serverTimeDelta;
16
+ constructor(api: BaseApi, externalLogger: BaseLogger | null, conversationIdProvider: () => string | null);
17
+ log(name: StatLog, value?: string, immediately?: boolean): void;
18
+ logClientStats(data: Record<string, string | number | boolean | undefined | null>, immediately?: boolean): void;
19
+ logClientEvent(data: Record<string, string | number | boolean | undefined | null>, immediately?: boolean): void;
20
+ destroy(): void;
21
+ private _getConversationId;
22
+ private _sendBatch;
23
+ private _startTimeout;
24
+ private _stopTimeout;
25
+ private _sendClientStats;
26
+ private _sendClientEvents;
27
+ private _calculateServerTimeDelta;
28
+ private _now;
29
+ }
@@ -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
- constructor(datachannel: RTCDataChannel, participantIdRegistry: ParticipantIdRegistry, callback: (asr: AsrTranscription) => void);
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>;
@@ -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
- constructor(onStream: (stream: MediaStream) => void);
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
- constructor(datachannel: RTCDataChannel, participantIdRegistry: ParticipantIdRegistry, onStream: (streamId: string, stream: MediaStream) => void, onEos: (streamId: string) => void, onStat: IOnStat);
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.
@@ -1,4 +1,6 @@
1
1
  import BaseSignaling from '../../abstract/BaseSignaling';
2
+ import { type DebugLogger } from '../../static/Debug';
3
+ import StatsLogger from '../StatsLogger';
2
4
  export default class ScreenCaptureSender {
3
5
  private readonly _encoder;
4
6
  private readonly _datachannel;
@@ -21,7 +23,9 @@ export default class ScreenCaptureSender {
21
23
  private readonly _queue;
22
24
  private readonly _fpsMeter;
23
25
  private readonly _maxFrameDelay;
24
- constructor(track: MediaStreamTrack, datachannel: RTCDataChannel, signaling: BaseSignaling, fastSharing: boolean);
26
+ private readonly _debug;
27
+ private readonly _logger;
28
+ constructor(track: MediaStreamTrack, datachannel: RTCDataChannel, signaling: BaseSignaling, fastSharing: boolean, debug?: DebugLogger, logger?: StatsLogger | null);
25
29
  private _handleQueue;
26
30
  /**
27
31
  * Очищает очередь до опорного кадра
@@ -1,3 +1,4 @@
1
+ import { type DebugLogger } from '../../static/Debug';
1
2
  import { OnCongestionCallback } from '../codec/Types';
2
3
  import { SharingStatReport } from './SharingStatReport';
3
4
  export default class ScreenCongestionControl {
@@ -24,7 +25,8 @@ export default class ScreenCongestionControl {
24
25
  private _lastFpsCalcMs;
25
26
  private _frames;
26
27
  private _fps;
27
- constructor(onCongestion: OnCongestionCallback, minBitrate: number, maxBitrate: number, ccEnabled: boolean, fastSharing: boolean, delayThreshold: number, targetFps: number);
28
+ private readonly _debug;
29
+ constructor(onCongestion: OnCongestionCallback, minBitrate: number, maxBitrate: number, ccEnabled: boolean, fastSharing: boolean, delayThreshold: number, targetFps: number, debug?: DebugLogger);
28
30
  checkDelay(frameNum: number, delay: number, bitrateK: number): void;
29
31
  private _setBitrate;
30
32
  private _calcDelay;
@@ -1,4 +1,7 @@
1
+ import { type DebugLogger } from '../../static/Debug';
1
2
  import { ParticipantId } from '../../types/Participant';
3
+ import StatsLogger from '../StatsLogger';
4
+ import { StatAggregator } from '../stat/StatAggregator';
2
5
  import { BaseStreamBuilder, FrameData, IOnStat, IOnStream } from './BaseStreamBuilder';
3
6
  export default class StreamBuilder extends BaseStreamBuilder {
4
7
  private _renderer;
@@ -7,7 +10,8 @@ export default class StreamBuilder extends BaseStreamBuilder {
7
10
  private _decoderBusy;
8
11
  private _decoderQueue;
9
12
  private _fpsMeter;
10
- constructor(participantId: ParticipantId, onStream: IOnStream, onStat: IOnStat, onKeyFrameRequested: VoidFunction);
13
+ private readonly _logger;
14
+ constructor(participantId: ParticipantId, onStream: IOnStream, onStat: IOnStat, statAggregator: StatAggregator | null, onKeyFrameRequested: VoidFunction, debug?: DebugLogger, logger?: StatsLogger | null);
11
15
  protected _processFrame(frame: FrameData): void;
12
16
  private _initFpsMeter;
13
17
  /**
@@ -1,9 +1,11 @@
1
+ import { type DebugLogger } from '../../static/Debug';
1
2
  import BaseRenderer from './BaseRenderer';
2
3
  export default class TrackGeneratorRenderer extends BaseRenderer {
3
4
  private readonly _generator;
4
5
  private readonly _writer;
5
6
  private readonly _stream;
6
- constructor(onStream: (stream: MediaStream) => void);
7
+ private readonly _debug;
8
+ constructor(onStream: (stream: MediaStream) => void, debug?: DebugLogger);
7
9
  drawFrame(frame: VideoFrame): Promise<void>;
8
10
  destroy(): void;
9
11
  static isBrowserSupported(): boolean;
@@ -1,4 +1,6 @@
1
+ import { type DebugLogger } from '../../static/Debug';
1
2
  import { ParticipantId } from '../../types/Participant';
3
+ import { StatAggregator } from '../stat/StatAggregator';
2
4
  import { BaseStreamBuilder, FrameData, IOnStat, IOnStream } from './BaseStreamBuilder';
3
5
  export default class WebmBuilder extends BaseStreamBuilder {
4
6
  private _mediaBuffer;
@@ -7,7 +9,7 @@ export default class WebmBuilder extends BaseStreamBuilder {
7
9
  private _earliestTimestamp;
8
10
  private _clusterStartTime;
9
11
  private _lastFrameTimestamp;
10
- constructor(participantId: ParticipantId, onStream: IOnStream, onStat: IOnStat);
12
+ constructor(participantId: ParticipantId, onStream: IOnStream, onStat: IOnStat, statAggregator: StatAggregator | null, debug?: DebugLogger);
11
13
  private static _intToU16BE;
12
14
  private static _genWebmHeader;
13
15
  private static _genSegmentHeader;