refactor: rename looper ports to ch0in/ch0out and move connection logic to client

This commit is contained in:
Loic Coenen
2026-05-31 13:05:28 +00:00
committed by Loic Coenen (aider)
parent 316320c294
commit 20176517a4
7 changed files with 31 additions and 107 deletions

View File

@@ -1048,8 +1048,8 @@ async function testFromToAudioPass(): Promise<void> {
}
// Now check the connection result look for error lines produced by the fixed pipe.c
const fromFailed = stderrLog.includes("Failed to connect system:capture_1 -> looper:input");
const toFailed = stderrLog.includes("Failed to connect looper:output -> system:playback_1");
const fromFailed = stderrLog.includes("Failed to connect system:capture_1 -> looper:ch0in");
const toFailed = stderrLog.includes("Failed to connect looper:ch0out -> system:playback_1");
const anyError = stderrLog.includes("Failed to connect") || stderrLog.includes("Retry also failed");
if (fromFailed) {