@vkontakte/calls-sdk 2.8.6-dev.3c52c9a0.0 → 2.8.6-dev.41ce7d89.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/abstract/BaseSignaling.d.ts +0 -2
- package/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +8 -8
- package/classes/Conversation.d.ts +1 -1
- package/classes/MediaSource.d.ts +0 -8
- package/classes/ProducerCommandSerializationService.d.ts +0 -2
- package/classes/transport/ServerTransport.d.ts +0 -5
- package/classes/transport/Transport.d.ts +0 -1
- package/default/Signaling.d.ts +0 -2
- package/enums/SignalingCommandType.d.ts +1 -2
- package/package.json +1 -1
- package/static/Params.d.ts +0 -8
- package/static/Utils.d.ts +1 -2
- package/static/WebRTCUtils.d.ts +0 -1
- package/types/Statistics.d.ts +4 -11
- package/types/VideoSettings.d.ts +0 -12
- package/static/SimulcastInfo.d.ts +0 -13
- package/types/ChangeSimulcast.d.ts +0 -6
- package/types/SimulcastInfo.d.ts +0 -10
|
@@ -272,7 +272,7 @@ export default class Conversation extends EventEmitter {
|
|
|
272
272
|
setLocalResolution({ video, effect }: {
|
|
273
273
|
video: IVideoDimentions;
|
|
274
274
|
effect?: IVideoDimentions;
|
|
275
|
-
}): Promise<void>;
|
|
275
|
+
}): Promise<void | undefined>;
|
|
276
276
|
videoEffect(effect: IEffect | null): Promise<void | undefined>;
|
|
277
277
|
audioEffect(effects: string[] | null, isPreset?: boolean): Promise<void | undefined>;
|
|
278
278
|
_convertExternalIdsToServerExternalIds(externalIds: ExternalId[]): SignalingMessage.ExternalId[];
|
package/classes/MediaSource.d.ts
CHANGED
|
@@ -22,13 +22,6 @@ interface AudioEffectParams {
|
|
|
22
22
|
effects: string[];
|
|
23
23
|
isPreset?: boolean;
|
|
24
24
|
}
|
|
25
|
-
/**
|
|
26
|
-
* тип источника (для сервера)
|
|
27
|
-
*/
|
|
28
|
-
export declare enum MediaSourceType {
|
|
29
|
-
CAMERA = 1,
|
|
30
|
-
SCREEN = 2
|
|
31
|
-
}
|
|
32
25
|
export declare class MediaSource extends EventEmitter {
|
|
33
26
|
/** Стрим с камеры и микрофона пользователя */
|
|
34
27
|
protected _stream: MediaStream | null;
|
|
@@ -97,7 +90,6 @@ export declare class MediaSource extends EventEmitter {
|
|
|
97
90
|
video: IVideoDimentions;
|
|
98
91
|
effect?: IVideoDimentions;
|
|
99
92
|
}): Promise<void>;
|
|
100
|
-
getCameraVideoTrack(): MediaStreamTrack | null;
|
|
101
93
|
updateNoiseSuppression(): Promise<void>;
|
|
102
94
|
videoEffect(effect: IEffect | null): Promise<void>;
|
|
103
95
|
audioEffect(audioEffectParams: AudioEffectParams | null): Promise<void>;
|
|
@@ -5,7 +5,6 @@ import { EnableVideoSuspend } from '../types/EnableVideoSuspend';
|
|
|
5
5
|
import { EnableVideoSuspendSuggest } from '../types/EnableVideoSuspendSuggest';
|
|
6
6
|
import SignalingMessage from '../types/SignalingMessage';
|
|
7
7
|
import { PerfStatReport } from '../types/PerfStatReporter';
|
|
8
|
-
import { ChangeSimulcast } from '../types/ChangeSimulcast';
|
|
9
8
|
import { SharingStatReport } from './screenshare/SharingStatReport';
|
|
10
9
|
import { ParticipantIdRegistry } from './ParticipantIdRegistry';
|
|
11
10
|
export declare class ProducerCommandSerializationService {
|
|
@@ -22,7 +21,6 @@ export declare class ProducerCommandSerializationService {
|
|
|
22
21
|
serializeNetworkStatReport(sequenceNumber: number, report: NetworkStatReport): ArrayBuffer;
|
|
23
22
|
serializeEnableVideoSuspend(sequenceNumber: number, params: EnableVideoSuspend): ArrayBuffer;
|
|
24
23
|
serializeEnableVideoSuspendSuggest(sequenceNumber: number, params: EnableVideoSuspendSuggest): ArrayBuffer;
|
|
25
|
-
serializeChangeSimulcast(sequenceNumber: number, params: ChangeSimulcast): ArrayBuffer;
|
|
26
24
|
deserializeCommandResponse(data: BufferSource | Blob): Promise<SignalingMessage | undefined>;
|
|
27
25
|
private deserializeUpdateDisplayLayoutResponse;
|
|
28
26
|
private deserializeReportPerfStatResponse;
|
|
@@ -35,7 +35,6 @@ export default class ServerTransport extends BaseTransport {
|
|
|
35
35
|
private _rtpReceiversByStreamId;
|
|
36
36
|
private _producerSessionId;
|
|
37
37
|
private _newAudioShareTrack;
|
|
38
|
-
private _simulcastInfo;
|
|
39
38
|
constructor(signaling: BaseSignaling, mediaSource: MediaSource, serverSettings: ServerSettings);
|
|
40
39
|
updateStatisticsInterval(): void;
|
|
41
40
|
open(observer?: boolean): void;
|
|
@@ -45,7 +44,6 @@ export default class ServerTransport extends BaseTransport {
|
|
|
45
44
|
allowRestart(): void;
|
|
46
45
|
updateSettings(settings: ServerSettings): void;
|
|
47
46
|
setAnimojiTransport(receiver: AnimojiReceiver, sender: AnimojiSender): void;
|
|
48
|
-
onCameraResolutionChanged(): Promise<void>;
|
|
49
47
|
private _createPerfStatsReporter;
|
|
50
48
|
private _closeConnection;
|
|
51
49
|
private static _closeDataChannel;
|
|
@@ -74,8 +72,6 @@ export default class ServerTransport extends BaseTransport {
|
|
|
74
72
|
private _detectStaleTracks;
|
|
75
73
|
private _allocateConsumer;
|
|
76
74
|
private _processOffer;
|
|
77
|
-
private _findFirstSimTransceiver;
|
|
78
|
-
private _setupSimulcastTransceiver;
|
|
79
75
|
private _acceptProducer;
|
|
80
76
|
private _handleTracks;
|
|
81
77
|
private _onSignalingNotification;
|
|
@@ -86,5 +82,4 @@ export default class ServerTransport extends BaseTransport {
|
|
|
86
82
|
private _onConnectionStateChange;
|
|
87
83
|
private _onReplacedTrack;
|
|
88
84
|
getStreamWaitingTimeMs(streamId: string, targetRtpTimestamp: number): number;
|
|
89
|
-
private _changeSimulcastInfo;
|
|
90
85
|
}
|
|
@@ -66,7 +66,6 @@ export declare class Transport extends EventEmitter {
|
|
|
66
66
|
getStates(): Record<string, TransportState>;
|
|
67
67
|
setAnimojiSvg(participantId: ParticipantId, svgData: AnimojiSvgData): void;
|
|
68
68
|
setAnimojiFill(fill: RGBTuple | string): void;
|
|
69
|
-
onCameraResolutionChanged(): Promise<void>;
|
|
70
69
|
private _setStates;
|
|
71
70
|
private _setLocalState;
|
|
72
71
|
private _onSignalingNotification;
|
package/default/Signaling.d.ts
CHANGED
|
@@ -20,7 +20,6 @@ import ParticipantLayout, { RequestKeyFrame, StopStream } from '../types/Partici
|
|
|
20
20
|
import { ParticipantListChunkParameters } from '../types/ParticipantListChunk';
|
|
21
21
|
import { StreamDescriptionString } from '../types/ParticipantStreamDescription';
|
|
22
22
|
import { PerfStatReport } from '../types/PerfStatReporter';
|
|
23
|
-
import { ChangeSimulcast } from '../types/ChangeSimulcast';
|
|
24
23
|
import SignalingMessage, { GetParticipantsSignalingResponse, GetRoomsSignalingResponse, SignalingSuccessResponse } from '../types/SignalingMessage';
|
|
25
24
|
import { IPublishStreamData, IRecordConfData, IStartStreamData, IStopStreamData } from '../types/Streams';
|
|
26
25
|
export default class Signaling extends BaseSignaling {
|
|
@@ -133,7 +132,6 @@ export default class Signaling extends BaseSignaling {
|
|
|
133
132
|
updateMediaModifiers(mediaModifiers: MediaModifiers): Promise<SignalingMessage>;
|
|
134
133
|
enableVideoSuspend(enabled: boolean): Promise<SignalingMessage>;
|
|
135
134
|
enableVideoSuspendSuggest(enabled: boolean): Promise<SignalingMessage>;
|
|
136
|
-
changeSimulcast(changeSimulcast: ChangeSimulcast): Promise<SignalingMessage>;
|
|
137
135
|
changeOptions(changes: {
|
|
138
136
|
[key in ConversationOption]?: boolean;
|
|
139
137
|
}): Promise<SignalingMessage>;
|
|
@@ -55,7 +55,6 @@ declare enum SignalingCommandType {
|
|
|
55
55
|
GET_HAND_QUEUE = "get-hand-queue",
|
|
56
56
|
ENABLE_VIDEO_SUSPEND = "enable-video-suspend",
|
|
57
57
|
ENABLE_VIDEO_SUSPEND_SUGGEST = "enable-video-suspend-suggest",
|
|
58
|
-
PUT_HANDS_DOWN = "put-hands-down"
|
|
59
|
-
CHANGE_SIMULCAST = "change-simulcast"
|
|
58
|
+
PUT_HANDS_DOWN = "put-hands-down"
|
|
60
59
|
}
|
|
61
60
|
export default SignalingCommandType;
|
package/package.json
CHANGED
package/static/Params.d.ts
CHANGED
|
@@ -837,12 +837,6 @@ export type ParamsObject = {
|
|
|
837
837
|
switchVideoAtBadNetwork: boolean;
|
|
838
838
|
/** включает деградацию фпс для видео с камеры при низком фпс с включенными вирт фонами */
|
|
839
839
|
enableVideoEffectsFpsDegradation: boolean;
|
|
840
|
-
/**
|
|
841
|
-
* Включить поддержку simulcast на отправке
|
|
842
|
-
*
|
|
843
|
-
* _По умолчанию: `false`_
|
|
844
|
-
*/
|
|
845
|
-
simulcast: boolean;
|
|
846
840
|
};
|
|
847
841
|
export default abstract class Params {
|
|
848
842
|
private static _params;
|
|
@@ -968,8 +962,6 @@ export default abstract class Params {
|
|
|
968
962
|
static getScreenFrameRate(fastScreenShare: boolean): number;
|
|
969
963
|
static get switchVideoAtBadNetwork(): boolean;
|
|
970
964
|
static get enableVideoEffectsFpsDegradation(): boolean;
|
|
971
|
-
static get simulcast(): boolean;
|
|
972
|
-
static set simulcast(value: boolean);
|
|
973
965
|
static toJSON(): {
|
|
974
966
|
apiKey: string;
|
|
975
967
|
apiEnv: string;
|
package/static/Utils.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ declare namespace Utils {
|
|
|
61
61
|
[key in T]?: K;
|
|
62
62
|
}, obj2: {
|
|
63
63
|
[key in T]?: K;
|
|
64
|
-
}
|
|
64
|
+
}): boolean;
|
|
65
65
|
function isArraysEquals<T>(arr1: T[], arr2: T[]): boolean;
|
|
66
66
|
function isEmptyObject(obj: object): boolean;
|
|
67
67
|
/**
|
|
@@ -74,6 +74,5 @@ declare namespace Utils {
|
|
|
74
74
|
function objectReduce<R, T extends Object>(obj: T, callback: (acc: R, value: T[keyof T], key: keyof T) => R, initialValue: R): R;
|
|
75
75
|
const setImmediate: (fn: VoidFunction) => VoidFunction;
|
|
76
76
|
function isObject(obj: unknown): obj is object;
|
|
77
|
-
function patchSimulcastAnswerSdp(sdp: string, trans: RTCRtpTransceiver, width: number, height: number): string;
|
|
78
77
|
}
|
|
79
78
|
export default Utils;
|
package/static/WebRTCUtils.d.ts
CHANGED
package/types/Statistics.d.ts
CHANGED
|
@@ -24,15 +24,7 @@ export interface ILocalIceCandidateStat extends IRemoteIceCandidateStat {
|
|
|
24
24
|
relayProtocol: string;
|
|
25
25
|
networkType: RTCNetworkType;
|
|
26
26
|
}
|
|
27
|
-
|
|
28
|
-
frameHeight?: number;
|
|
29
|
-
frameWidth?: number;
|
|
30
|
-
rid?: string;
|
|
31
|
-
framesSent?: number;
|
|
32
|
-
framesPerSecond?: number;
|
|
33
|
-
targetBitrate?: number;
|
|
34
|
-
}
|
|
35
|
-
export interface StatRtp extends StatRtpOutboundVideo {
|
|
27
|
+
export type StatRtp = {
|
|
36
28
|
ssrc: number;
|
|
37
29
|
type: string;
|
|
38
30
|
kind: string;
|
|
@@ -53,6 +45,8 @@ export interface StatRtp extends StatRtpOutboundVideo {
|
|
|
53
45
|
packetLoss?: number;
|
|
54
46
|
clockRate?: number;
|
|
55
47
|
mimeType?: string;
|
|
48
|
+
frameHeight?: number;
|
|
49
|
+
frameWidth?: number;
|
|
56
50
|
framesDecoded?: number;
|
|
57
51
|
framesReceived?: number;
|
|
58
52
|
framesDropped?: number;
|
|
@@ -69,7 +63,7 @@ export interface StatRtp extends StatRtpOutboundVideo {
|
|
|
69
63
|
totalFreezesDurationDelta?: number;
|
|
70
64
|
freezeCount: number;
|
|
71
65
|
freezeCountDelta?: number;
|
|
72
|
-
}
|
|
66
|
+
};
|
|
73
67
|
export type StatItem = {
|
|
74
68
|
timestamp: number;
|
|
75
69
|
transport: StatTransport;
|
|
@@ -93,4 +87,3 @@ export type StatResult = {
|
|
|
93
87
|
rtps: StatRtp[];
|
|
94
88
|
};
|
|
95
89
|
};
|
|
96
|
-
export {};
|
package/types/VideoSettings.d.ts
CHANGED
|
@@ -25,10 +25,6 @@ export type VideoSettings = {
|
|
|
25
25
|
* https://www.w3.org/TR/webrtc-svc/
|
|
26
26
|
*/
|
|
27
27
|
scalabilityMode: string;
|
|
28
|
-
/**
|
|
29
|
-
* Таблица с битрейтами в зависимости от разрешения
|
|
30
|
-
*/
|
|
31
|
-
bitrates?: Record<'generic' | string, VideoBitrateSettings[]>;
|
|
32
28
|
};
|
|
33
29
|
export default VideoSettings;
|
|
34
30
|
export declare function compareVideoSettings(vs1: VideoSettings | null, vs2: VideoSettings | null): boolean;
|
|
@@ -42,11 +38,3 @@ export declare enum VideoScalability {
|
|
|
42
38
|
L1T2 = "L1T2",
|
|
43
39
|
L1T3 = "L1T3"
|
|
44
40
|
}
|
|
45
|
-
/**
|
|
46
|
-
* Настройка битрейта под конкретное разрешение
|
|
47
|
-
* @hidden
|
|
48
|
-
*/
|
|
49
|
-
export type VideoBitrateSettings = {
|
|
50
|
-
dimension: number;
|
|
51
|
-
bitrate: number;
|
|
52
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { type SimulcastInfo as ISimulcastInfo } from '../types/SimulcastInfo';
|
|
2
|
-
import type { VideoBitrateSettings } from '../types/VideoSettings';
|
|
3
|
-
export declare const SIMULCAST_DEFAULT: {
|
|
4
|
-
HEIGHT: number;
|
|
5
|
-
WIDTH: number;
|
|
6
|
-
BITRATE: number;
|
|
7
|
-
};
|
|
8
|
-
export declare const MAP_RID_TO_SCALE_RESOLUTION_DOWN_BY: Record<string, number>;
|
|
9
|
-
export declare function getSimulcastInfo(stats?: RTCOutboundRtpStreamStats[], bitrates?: VideoBitrateSettings[]): ISimulcastInfo;
|
|
10
|
-
export declare function isEqualSimulcastInfo(si1: ISimulcastInfo | null, si2: ISimulcastInfo | null): boolean;
|
|
11
|
-
export declare function findBitrateAsc(maxDimension: number, bitrates: VideoBitrateSettings[]): number;
|
|
12
|
-
export declare function calculateSimulcastInfo(width?: number, height?: number, bitrates?: VideoBitrateSettings[]): ISimulcastInfo;
|
|
13
|
-
export declare function findScaleResolutionDownBy(rid: string): number;
|