From bd49036ed8d85919ccd76931eb553e3349adb05b Mon Sep 17 00:00:00 2001 From: Jaya Allamsetty Date: Tue, 2 Jan 2024 12:51:49 -0500 Subject: [PATCH] fix(config): Remove enableLipSync config. It is not supported by Jicofo anymore. --- config.js | 3 --- react/features/base/config/configType.ts | 1 - react/features/base/config/configWhitelist.ts | 1 - 3 files changed, 5 deletions(-) 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',