jiti-meet/react/features/stream-effects/rnnoise/index.js

26 lines
679 B
JavaScript
Raw Normal View History

// @flow
// Script expects to find rnnoise webassembly binary in the same public path root, otherwise it won't load
// During the build phase this needs to be taken care of manually
import rnnoiseWasmInit from 'rnnoise-wasm';
2020-05-20 10:57:03 +00:00
import RnnoiseProcessor from './RnnoiseProcessor';
export { RNNOISE_SAMPLE_LENGTH } from './RnnoiseProcessor';
export type { RnnoiseProcessor };
2020-06-11 13:42:55 +00:00
let rnnoiseModule;
/**
* Creates a new instance of RnnoiseProcessor.
*
* @returns {Promise<RnnoiseProcessor>}
*/
export function createRnnoiseProcessor() {
2020-06-11 13:42:55 +00:00
if (!rnnoiseModule) {
rnnoiseModule = rnnoiseWasmInit();
}
2020-06-11 13:42:55 +00:00
return rnnoiseModule.then(mod => new RnnoiseProcessor(mod));
}