@webex/web-client-media-engine 2.1.3 → 2.1.4
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 +20 -15
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +20 -15
- 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
|
@@ -17,7 +17,9 @@ declare enum MediaCodecMimeType {
|
|
|
17
17
|
}
|
|
18
18
|
declare type EncodingParams = {
|
|
19
19
|
maxPayloadBitsPerSecond?: number;
|
|
20
|
-
|
|
20
|
+
maxFs?: number;
|
|
21
|
+
maxWidth?: number;
|
|
22
|
+
maxHeight?: number;
|
|
21
23
|
};
|
|
22
24
|
declare enum RecommendedOpusBitrates {
|
|
23
25
|
NB = 12000,
|
|
@@ -199,6 +201,7 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
199
201
|
private options;
|
|
200
202
|
private midPredictor;
|
|
201
203
|
private offerAnswerQueue;
|
|
204
|
+
private requestedIdEncodingParamsMap;
|
|
202
205
|
private setAnswerResolve?;
|
|
203
206
|
constructor(userOptions?: Partial<MultistreamConnectionOptions>);
|
|
204
207
|
private initializePeerConnection;
|
package/package.json
CHANGED