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 43874de commit 8a036f4Copy full SHA for 8a036f4
test/webaudio/audioworklet_test_shared.inc
@@ -102,8 +102,8 @@ int main(void) {
102
// With the 1.1 API this may be values other than 128
103
emscripten_outf("Audio context created with quantum size of %d samples", emscripten_audio_context_quantum_size(context));
104
105
- // Here we create a fixed sized worklet stack, but could decide based on the
106
- // quantum size above (ins and outs * bytes per quantum)/
+ // Here we create a fixed sized worklet stack, but could calculate taking the
+ // quantum size above (ins and outs * bytes per quantum).
107
char* const workletStack = memalign(16, AUDIO_STACK_SIZE);
108
emscripten_outf("Audio worklet stack at 0x%p", workletStack);
109
assert(workletStack);
0 commit comments