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
Copy file name to clipboardExpand all lines: src/lib/libwebaudio.js
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -245,26 +245,25 @@ let LibraryWebAudio = {
245
245
assert(EmAudio[contextHandle]instanceof(window.AudioContext||window.webkitAudioContext),`Called emscripten_create_wasm_audio_worklet_processor_async() on a context handle ${contextHandle} that is not an AudioContext, but of type ${typeofEmAudio[contextHandle]}`);
// for space saving reasons, abbreviated from their variable names).
275
274
// Note: we can only pass clonable object, so need to pass the function
276
275
// pointer and not the wasm function object.
277
-
'_wpn': name,
276
+
'_wpn': processorName,
278
277
'ap': audioParams,
279
278
'ch': contextHandle,
280
279
'cb': {{{toIndexType('callback')}}},
@@ -290,6 +289,7 @@ let LibraryWebAudio = {
290
289
assert(EmAudio[contextHandle]instanceof(window.AudioContext||window.webkitAudioContext),`Called emscripten_create_wasm_audio_worklet_node() on a context handle ${contextHandle} that is not an AudioContext, but of type ${typeofEmAudio[contextHandle]}`);
0 commit comments