@webex/web-client-media-engine 3.10.1 → 3.11.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 +28 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +28 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -95,7 +95,7 @@ declare class EgressSdpMunger {
|
|
|
95
95
|
private streamIds;
|
|
96
96
|
private customCodecParameters;
|
|
97
97
|
reset(): void;
|
|
98
|
-
mungeLocalDescription(mediaDescription: AvMediaDescription, simulcastEnabled: boolean, rtxEnabled: boolean): void;
|
|
98
|
+
mungeLocalDescription(mediaDescription: AvMediaDescription, simulcastEnabled: boolean, rtxEnabled: boolean, twccDisabled: boolean): void;
|
|
99
99
|
mungeLocalDescriptionForRemoteServer(mediaDescription: AvMediaDescription, mediaContent: MediaContent, csi: number): void;
|
|
100
100
|
mungeRemoteDescription(mediaDescription: AvMediaDescription): void;
|
|
101
101
|
getSenderIds(): StreamId[];
|
|
@@ -109,6 +109,7 @@ declare class EgressSdpMunger {
|
|
|
109
109
|
declare abstract class Transceiver {
|
|
110
110
|
protected _rtcRtpTransceiver: RTCRtpTransceiver;
|
|
111
111
|
mid: string;
|
|
112
|
+
twccDisabled: boolean;
|
|
112
113
|
constructor(rtcRtpTransceiver: RTCRtpTransceiver, mid: string);
|
|
113
114
|
replaceTransceiver(newRtcRtpTransceiver: RTCRtpTransceiver): void;
|
|
114
115
|
protected get receiver(): RTCRtpReceiver;
|
|
@@ -237,6 +238,7 @@ declare type MultistreamConnectionOptions = {
|
|
|
237
238
|
bundlePolicy: BundlePolicy;
|
|
238
239
|
iceServers: RTCIceServer[] | undefined;
|
|
239
240
|
disableContentSimulcast: boolean;
|
|
241
|
+
disableAudioTwcc: boolean;
|
|
240
242
|
};
|
|
241
243
|
declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEvents> {
|
|
242
244
|
private pc;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/web-client-media-engine",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "Web Client Media Engine is common web code for interacting with the multistream media server.",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@webex/json-multistream": "^2.1.1",
|
|
58
58
|
"@webex/rtcstats": "^1.1.1",
|
|
59
59
|
"@webex/ts-events": "^1.0.1",
|
|
60
|
-
"@webex/ts-sdp": "1.
|
|
60
|
+
"@webex/ts-sdp": "1.6.0",
|
|
61
61
|
"@webex/web-capabilities": "^1.1.1",
|
|
62
62
|
"@webex/webrtc-core": "2.2.3",
|
|
63
63
|
"async": "^3.2.4",
|