File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ function createWasmAudioWorkletProcessor(audioParams) {
129
129
130
130
// Copy parameters descriptor structs and data to Wasm
131
131
paramsPtr = dataPtr ;
132
- k = paramsPtr >> 2 ;
132
+ k = paramsPtr >>> 2 ;
133
133
dataPtr += numParams * { { { C_STRUCTS . AudioParamFrame . __size__ } } } ;
134
134
for ( i = 0 ; paramArray = parameters [ i ++ ] ; ) {
135
135
// Write the AudioParamFrame struct instance
@@ -144,7 +144,7 @@ function createWasmAudioWorkletProcessor(audioParams) {
144
144
// Copy output audio descriptor structs to Wasm (note that dataPtr after
145
145
// the struct offsets should now be 16-byte aligned).
146
146
outputsPtr = dataPtr ;
147
- k = outputsPtr >> 2 ;
147
+ k = outputsPtr >>> 2 ;
148
148
dataPtr += numOutputs * { { { C_STRUCTS . AudioSampleFrame . __size__ } } } ;
149
149
for ( i of outputList ) {
150
150
// Write the AudioSampleFrame struct instance
You can’t perform that action at this time.
0 commit comments