Skip to content
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

fix: Correct syntax errors in PCM processor #1569

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
style: Format PCM processor with Prettier
heiko-hotz committed Dec 20, 2024
commit 3193ec05a187a157162e22472c7ceb80c1c757c0
Original file line number Diff line number Diff line change
@@ -4,31 +4,31 @@
* @description Processes PCM audio data in a Web Audio API context
*/
class PCMProcessor extends AudioWorkletProcessor {
constructor() {
super();
this.buffer = new Float32Array();
constructor() {
super();
this.buffer = new Float32Array();

this.port.onmessage = (e) => {
const newData = e.data;
const newBuffer = new Float32Array(this.buffer.length + newData.length);
newBuffer.set(this.buffer);
newBuffer.set(newData, this.buffer.length);
this.buffer = newBuffer;
};
}

process(inputs, outputs, parameters) {
const output = outputs[0];
const channelData = output[0];
this.port.onmessage = (e) => {
const newData = e.data;
const newBuffer = new Float32Array(this.buffer.length + newData.length);
newBuffer.set(this.buffer);
newBuffer.set(newData, this.buffer.length);
this.buffer = newBuffer;
};
}

if (this.buffer.length >= channelData.length) {
channelData.set(this.buffer.slice(0, channelData.length));
this.buffer = this.buffer.slice(channelData.length);
return true;
}
process(inputs, outputs, parameters) {
const output = outputs[0];
const channelData = output[0];

return true;
if (this.buffer.length >= channelData.length) {
channelData.set(this.buffer.slice(0, channelData.length));
this.buffer = this.buffer.slice(channelData.length);
return true;
}

return true;
}
}

registerProcessor('pcm-processor', PCMProcessor);
registerProcessor("pcm-processor", PCMProcessor);