-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Simplify AUDIO_WORKLET checks. NFC #24164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -137,9 +137,6 @@ var WASM_BINARY_FILE = ''; | |||
// name of the file containing the Wasm Worker *.ww.js, if relevant | |||
var WASM_WORKER_FILE = ''; | |||
|
|||
// name of the file containing the Audio Worklet *.aw.js, if relevant | |||
var AUDIO_WORKLET_FILE = ''; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a separate change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, its just an internal setting that is no longer needed after this change.
I assume the idea here was that there would be an AUDIO_WORKLET=2 mode but that was never added.
I did use Removing the need for a custom |
I recall I would have originally intended But this change LGTM, I presume we can still add a |
Yup, that makes sense to me. BTW, for wasm workers I'm looking at removed completely the separate .ww.js file now: #24163 |
Can someone lgtm? |
I assume the idea here was that there would be an AUDIO_WORKLET=2 mode but that was never added.