You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If building with `-sAUDIO_WORKLET` and `--closure=1` the generated glue
JS will minimise the property names passed to the worklet's message
handler:
https://github.com/emscripten-core/emscripten/blob/9445d6a1c3e3872d6e909565301a47c9c4fbd35b/src/audio_worklet.js#L179
E.g. these are received as:
```
A: 3,
B: 1,
F: 0,
s: "noise-generator"
```
No sound will be generated as a result, since calls to
`emscripten_create_wasm_audio_worklet_processor_async()` will never call
the passed function.
0 commit comments