fix(config): Remove unused config values.
capScreenshareBitrate and setScreenSharingResolutionConstraints are no longer valid.
This commit is contained in:
parent
0ad52a06ce
commit
7e30053d51
|
@ -79,11 +79,6 @@ var config = {
|
||||||
// This is useful when the client runs on a host with limited resources.
|
// This is useful when the client runs on a host with limited resources.
|
||||||
// noAutoPlayVideo: false,
|
// noAutoPlayVideo: false,
|
||||||
|
|
||||||
// Whether to use fake constraints (height: 99999, width: 99999) when calling getDisplayMedia on
|
|
||||||
// Chromium based browsers. This is intended as a workaround for
|
|
||||||
// https://bugs.chromium.org/p/chromium/issues/detail?id=1056311
|
|
||||||
// setScreenSharingResolutionConstraints: true,
|
|
||||||
|
|
||||||
// Enable callstats only for a percentage of users.
|
// Enable callstats only for a percentage of users.
|
||||||
// This takes a value between 0 and 100 which determines the probability for
|
// This takes a value between 0 and 100 which determines the probability for
|
||||||
// the callstats to be enabled.
|
// the callstats to be enabled.
|
||||||
|
|
|
@ -482,12 +482,10 @@ export interface IConfig {
|
||||||
subject?: string;
|
subject?: string;
|
||||||
testing?: {
|
testing?: {
|
||||||
callStatsThreshold?: number;
|
callStatsThreshold?: number;
|
||||||
capScreenshareBitrate?: number;
|
|
||||||
disableE2EE?: boolean;
|
disableE2EE?: boolean;
|
||||||
mobileXmppWsThreshold?: number;
|
mobileXmppWsThreshold?: number;
|
||||||
noAutoPlayVideo?: boolean;
|
noAutoPlayVideo?: boolean;
|
||||||
p2pTestMode?: boolean;
|
p2pTestMode?: boolean;
|
||||||
setScreenSharingResolutionConstraints?: boolean;
|
|
||||||
testMode?: boolean;
|
testMode?: boolean;
|
||||||
};
|
};
|
||||||
tileView?: {
|
tileView?: {
|
||||||
|
|
Loading…
Reference in New Issue