ref(config) Cleanup unused flags related to multi-stream mode.

This commit is contained in:
Jaya Allamsetty 2022-11-09 14:40:20 -05:00
parent 99385ae3d7
commit 6223e16ca5
3 changed files with 0 additions and 24 deletions

View File

@ -304,8 +304,6 @@ export interface IConfig {
};
firefox_fake_device?: string;
flags?: {
sendMultipleVideoStreams?: boolean;
sourceNameSignaling?: boolean;
};
focusUserJid?: string;
gatherStats?: boolean;

View File

@ -60,15 +60,3 @@ export const PREMEETING_BUTTONS = [ 'microphone', 'camera', 'select-background',
* The toolbar buttons to show on 3rdParty prejoin screen.
*/
export const THIRD_PARTY_PREJOIN_BUTTONS = [ 'microphone', 'camera', 'select-background' ];
/**
* The set of feature flags.
*
* @enum {string}
*/
export const FEATURE_FLAGS = {
MULTIPLE_VIDEO_STREAMS_SUPPORT: 'sendMultipleVideoStreams',
SOURCE_NAME_SIGNALING: 'sourceNameSignaling'
};

View File

@ -88,16 +88,6 @@ type Props = AbstractProps & WithTranslation & {
*/
_popoverDisabled: boolean;
/**
* The source name of the track.
*/
_sourceName: string;
/**
* Whether source name signaling is enabled.
*/
_sourceNameSignalingEnabled: boolean;
/**
* Whether or not the component should ignore setting a visibility class for
* hiding the component when the connection quality is not strong.