From f015f4edc397e28c139e6638ae1d9a27025db86e Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Tue, 1 May 2018 11:38:29 -0700 Subject: [PATCH] feat(large-video): background blur through canvas and feature flag To reduce the amount of motion that has to be blurred, use a canvas to essentially set the FPS of the video background. This canvas component is behind a temporary feature flag, as well as being able to disable the blur, so it can be played around with on deployed environments. --- interface_config.js | 12 +- modules/UI/videolayout/VideoContainer.js | 14 +- .../components/LargeVideoBackground.web.js | 2 +- .../LargeVideoBackgroundCanvas.native.js | 0 .../LargeVideoBackgroundCanvas.web.js | 229 ++++++++++++++++++ .../features/large-video/components/index.js | 1 + 6 files changed, 253 insertions(+), 5 deletions(-) create mode 100644 react/features/large-video/components/LargeVideoBackgroundCanvas.native.js create mode 100644 react/features/large-video/components/LargeVideoBackgroundCanvas.web.js 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( -