We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24360cf commit e6ad164Copy full SHA for e6ad164
src/audio_worklet.js
@@ -31,7 +31,11 @@ function createWasmAudioWorkletProcessor(audioParams) {
31
let opts = args.processorOptions;
32
this.callbackFunction = Module['wasmTable'].get(opts['cb']);
33
this.userData = opts['ud'];
34
- // Plus the number of samples to process, fixed for the lifetime of the context that created this processor
+ // Plus the number of samples to process, fixed for the lifetime of the
35
+ // context that created this processor. Note for when moving to Web Audio
36
+ // 1.1: the typed array passed to process() should be the same size as the
37
+ // the quantum size, and this exercise of passing in the value shouldn't
38
+ // be required (to be verified).
39
this.quantumSize = opts['qs'];
40
}
41
0 commit comments