1-multichannel #1

Merged
boomjacky merged 31 commits from 1-multichannel into multichannel 2026-05-09 15:47:09 -04:00
Showing only changes of commit 934843e9b1 - Show all commits

View File

@@ -83,8 +83,7 @@ int process_callback(jack_nframes_t nframes, void *arg) {
if (channels[c].record_pos < LOOP_BUF_SIZE)
channels[c].loop_buffer[channels[c].record_pos++] =
((const float *)in)[i];
// cppcheck-suppress unreadVariable
((float *)out)[i] = ((const float *)in)[i];
((float *)out)[i] = ((const float *)in)[i]; // cppcheck-suppress unreadVariable
}
} else {
memset(out, 0, sizeof(jack_default_audio_sample_t) * nframes);