@webex/web-client-media-engine 3.22.1 → 3.22.2
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 +35 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +35 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -92,9 +92,14 @@ declare class ReceiveSlot extends EventEmitter<ReceiverEvents> {
|
|
|
92
92
|
get sourceState(): StreamState | undefined;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
+
type EgressSdpMungerOptions = {
|
|
96
|
+
doFullIce: boolean;
|
|
97
|
+
};
|
|
95
98
|
declare class EgressSdpMunger {
|
|
96
99
|
private streamIds;
|
|
97
100
|
private customCodecParameters;
|
|
101
|
+
private egressMungerOptions;
|
|
102
|
+
constructor(options: EgressSdpMungerOptions);
|
|
98
103
|
reset(): void;
|
|
99
104
|
mungeLocalDescription(mediaDescription: AvMediaDescription, options: {
|
|
100
105
|
simulcastEnabled: boolean;
|
|
@@ -264,6 +269,7 @@ type MultistreamConnectionOptions = {
|
|
|
264
269
|
iceServers: RTCIceServer[] | undefined;
|
|
265
270
|
disableContentSimulcast: boolean;
|
|
266
271
|
disableAudioTwcc: boolean;
|
|
272
|
+
doFullIce: boolean;
|
|
267
273
|
};
|
|
268
274
|
declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEvents> {
|
|
269
275
|
private pc;
|
|
@@ -304,6 +310,7 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
304
310
|
createReceiveSlot(mediaType: MediaType): Promise<ReceiveSlot>;
|
|
305
311
|
createReceiveSlots(mediaType: MediaType, count?: number): Promise<ReceiveSlot[]>;
|
|
306
312
|
getIngressPayloadType(mediaType: MediaType, mimeType: MediaCodecMimeType): number;
|
|
313
|
+
waitForIceGatheringComplete(): Promise<void>;
|
|
307
314
|
createOffer(): Promise<RTCSessionDescriptionInit>;
|
|
308
315
|
setAnswer(answer: string): Promise<void>;
|
|
309
316
|
private doLocalOfferAnswer;
|
package/package.json
CHANGED