diff --git a/config.js b/config.js index 5c4acb8d21b8..c5707355d18d 100644 --- a/config.js +++ b/config.js @@ -1296,9 +1296,6 @@ var config = { // If set to true all muting operations of remote participants will be disabled. // disableRemoteMute: true, - // Enables support for lip-sync for this client (if the browser supports it). - // enableLipSync: false, - /** External API url used to receive branding specific information. If there is no url set or there are missing fields, the defaults are applied. diff --git a/react/features/base/config/configType.ts b/react/features/base/config/configType.ts index 839aa5bddf40..0a94e1561673 100644 --- a/react/features/base/config/configType.ts +++ b/react/features/base/config/configType.ts @@ -362,7 +362,6 @@ export interface IConfig { enableForcedReload?: boolean; enableIceRestart?: boolean; enableInsecureRoomNameWarning?: boolean; - enableLipSync?: boolean; enableLobbyChat?: boolean; enableNoAudioDetection?: boolean; enableNoisyMicDetection?: boolean; diff --git a/react/features/base/config/configWhitelist.ts b/react/features/base/config/configWhitelist.ts index bc2c2fb2f8a3..2ac23b5ba8ee 100644 --- a/react/features/base/config/configWhitelist.ts +++ b/react/features/base/config/configWhitelist.ts @@ -138,7 +138,6 @@ export default [ 'enableEncodedTransformSupport', 'enableIceRestart', 'enableInsecureRoomNameWarning', - 'enableLipSync', 'enableLobbyChat', 'enableOpusRed', 'enableRemb',