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
console.assert(this.outputViews.length>0,`AudioWorklet needs more stack allocating (at least ${this.bytesPerChannel})`);
53
+
assert(this.outputViews.length>0,`AudioWorklet needs more stack allocating (at least ${this.bytesPerChannel})`);
54
54
#endif
55
55
this.createOutputViews();
56
56
@@ -138,8 +138,8 @@ function createWasmAudioWorkletProcessor() {
138
138
#endif
139
139
varoldStackPtr=stackSave();
140
140
#if ASSERTIONS
141
-
console.assert(oldStackPtr==this.ctorOldStackPtr,'AudioWorklet stack address has unexpectedly moved');
142
-
console.assert(outputViewsNeeded<=this.outputViews.length,`Too many AudioWorklet outputs (need ${outputViewsNeeded} but have stack space for ${this.outputViews.length})`);
141
+
assert(oldStackPtr==this.ctorOldStackPtr,'AudioWorklet stack address has unexpectedly moved');
142
+
assert(outputViewsNeeded<=this.outputViews.length,`Too many AudioWorklet outputs (need ${outputViewsNeeded} but have stack space for ${this.outputViews.length})`);
143
143
#endif
144
144
145
145
// Allocate the necessary stack space. All pointer variables are in bytes;
@@ -156,7 +156,7 @@ function createWasmAudioWorkletProcessor() {
0 commit comments