@webex/web-client-media-engine 1.33.2 → 1.34.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/dist/cjs/index.js +42 -25
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +42 -25
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -115,8 +115,11 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
115
115
|
private overuseUpdateCallback;
|
|
116
116
|
private options;
|
|
117
117
|
constructor(userOptions?: Partial<MultistreamConnectionOptions>);
|
|
118
|
+
private initializePeerConnection;
|
|
118
119
|
getConnectionState(): ConnectionState;
|
|
120
|
+
private getVideoEncodingOptions;
|
|
119
121
|
private createSendTransceiver;
|
|
122
|
+
private createJmpSession;
|
|
120
123
|
private sendSourceWarnings;
|
|
121
124
|
private updateRequestedStreams;
|
|
122
125
|
private createDataChannel;
|
|
@@ -136,7 +139,7 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
136
139
|
private getSendTransceiverOrThrow;
|
|
137
140
|
getPublishedTracks(): LocalTrack[];
|
|
138
141
|
requestMedia(mediaType: MediaType, mediaRequests: MediaRequest[]): void;
|
|
139
|
-
renewPeerConnection(): void;
|
|
142
|
+
renewPeerConnection(userOptions?: Partial<MultistreamConnectionOptions>): void;
|
|
140
143
|
private getReceiveSlotById;
|
|
141
144
|
getStats(): Promise<StatsReport>;
|
|
142
145
|
private preProcessStats;
|
package/package.json
CHANGED