@webex/web-client-media-engine 3.30.3 → 3.31.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 +22 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +22 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +8 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -106,7 +106,9 @@ declare class EgressSdpMunger {
|
|
|
106
106
|
mungeLocalDescriptionForRemoteServer(mediaDescription: AvMediaDescription, mediaContent: MediaContent, csi: number, mungeOptions?: {
|
|
107
107
|
injectDummyCandidates: boolean;
|
|
108
108
|
}): void;
|
|
109
|
-
mungeRemoteDescription(mediaDescription: AvMediaDescription
|
|
109
|
+
mungeRemoteDescription(mediaDescription: AvMediaDescription, mungeOptions?: {
|
|
110
|
+
dtxDisabled: boolean;
|
|
111
|
+
}): void;
|
|
110
112
|
getSenderIds(): SsrcStreamId[];
|
|
111
113
|
getEncodingIndexForStreamId(streamId: SsrcStreamId): number;
|
|
112
114
|
setCodecParameters(parameters: {
|
|
@@ -144,6 +146,7 @@ declare class SendOnlyTransceiver extends Transceiver {
|
|
|
144
146
|
private direction;
|
|
145
147
|
private munger;
|
|
146
148
|
rtxEnabled: boolean;
|
|
149
|
+
dtxDisabled: boolean;
|
|
147
150
|
streamMuteStateChange: TypedEvent<() => void>;
|
|
148
151
|
streamPublishStateChange: TypedEvent<() => void>;
|
|
149
152
|
negotiationNeeded: TypedEvent<(offerAnswerType: OfferAnswerType) => void>;
|
|
@@ -289,6 +292,7 @@ type MultistreamConnectionOptions = {
|
|
|
289
292
|
disableAudioTwcc: boolean;
|
|
290
293
|
doFullIce: boolean;
|
|
291
294
|
stopIceGatheringAfterFirstRelayCandidate: boolean;
|
|
295
|
+
disableAudioMainDtx: boolean;
|
|
292
296
|
metricsCallback: LoggerCallback;
|
|
293
297
|
};
|
|
294
298
|
declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEvents> {
|
|
@@ -309,6 +313,9 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
309
313
|
private currentCreateOfferId;
|
|
310
314
|
private iceCandidates;
|
|
311
315
|
private setAnswerResolve?;
|
|
316
|
+
metadata: {
|
|
317
|
+
isMediaBypassEdge: boolean;
|
|
318
|
+
};
|
|
312
319
|
constructor(userOptions?: Partial<MultistreamConnectionOptions>);
|
|
313
320
|
private initializePeerConnection;
|
|
314
321
|
private propagatePeerConnectionEvents;
|
package/package.json
CHANGED