diff --git a/interface_config.js b/interface_config.js index 1cc57ff16..7fecdfdf2 100644 --- a/interface_config.js +++ b/interface_config.js @@ -163,7 +163,17 @@ var interfaceConfig = { /** * Specify mobile app scheme for opening the app from the mobile browser. */ - // APP_SCHEME: 'org.jitsi.meet' + // APP_SCHEME: 'org.jitsi.meet', + + /** + * Temporary feature flag to debug performance with the large video + * background blur. On initial implementation, blur was always enabled so a + * falsy value here will be used to keep blur enabled, as will the value + * "video", and will render the blur over a video element. The value + * "canvas" will display the blur over a canvas element, while the value + * "off" will prevent the background from rendering. + */ + // _BACKGROUND_BLUR: undefined }; /* eslint-enable no-unused-vars, no-var, max-len */ diff --git a/modules/UI/videolayout/VideoContainer.js b/modules/UI/videolayout/VideoContainer.js index 0a3317862..e323b16eb 100644 --- a/modules/UI/videolayout/VideoContainer.js +++ b/modules/UI/videolayout/VideoContainer.js @@ -7,7 +7,8 @@ import ReactDOM from 'react-dom'; import { browser } from '../../../react/features/base/lib-jitsi-meet'; import { ORIENTATION, - LargeVideoBackground + LargeVideoBackground, + LargeVideoBackgroundCanvas } from '../../../react/features/large-video'; /* eslint-enable no-unused-vars */ @@ -689,14 +690,20 @@ export class VideoContainer extends LargeContainer { _updateBackground() { // Do not the background display on browsers that might experience // performance issues from the presence of the background. - if (browser.isFirefox() + if (interfaceConfig._BACKGROUND_BLUR === 'off' + || browser.isFirefox() || browser.isSafariWithWebrtc() || browser.isTemasysPluginUsed()) { return; } + // eslint-disable-next-line no-unused-vars + const Background = interfaceConfig._BACKGROUND_BLUR === 'canvas' + ? LargeVideoBackgroundCanvas + : LargeVideoBackground; + ReactDOM.render( -