[3.x] [HTML5] Refactor audio drivers. Implement AudioWorklet w/o threads. #52650
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Same as #52649, for
3.x
.In this PR:
Use browser mix rate by default on the Web.(done via [3.x] [HTML5] Use browser mix rate by default on the Web. #52723)Fix bug in AudioWorklet when reading output buffer (exception due to out-of-bound set).(cherry picked via Cherry-picks for the 3.x branch (future 3.4) - 17th batch #52841).Default HTML template prefers AudioWorklet on Chrome (this is questionable, and should probably be tested across devices).(will skip this for now).Performances are not great in general, bad on Firefox, on Chrome, well, it's an improvement compared to the way they broke ScriptProcessorNode.
Works by sending chunks via postMessage, which is really slow.
I'm actually surprised this works, it involves so many allocations, but there's no way around it when SharedArrayBuffer is not available :(.
Related to #47453