Files
jitsi-meet/react/features/screenshot-capture/processScreenshot.js
Gabriel Borlea 11f0ab9226 ref(screenshot-capture): move screenshot processing on a web worker (#14015)
Improvement for the screenshot capture feature by using a web worker to process the differences between the screenshots, and some code adjustments.
2023-11-09 10:01:02 +02:00

11 lines
398 B
JavaScript

/**
* Helper method used to process screenshots captured by the {@code ScreenshotCaptureEffect}.
*
* @param {Blob} imageBlob - The blob of the screenshot that has to be processed.
* @param {Object} options - Custom options required for processing.
* @returns {Promise<void>}
*/
export async function processScreenshot(imageBlob, options) { // eslint-disable-line no-unused-vars
return;
}