From 4d572682bdaaeb4e974bc223c6fac817713b1734 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 19 Sep 2024 23:56:05 +0200 Subject: [PATCH] cleanup --- tests/tc_link_pw.py | 17 +++-------------- tests/tc_link_pw_jack.py | 15 +-------------- 2 files changed, 4 insertions(+), 28 deletions(-) diff --git a/tests/tc_link_pw.py b/tests/tc_link_pw.py index ad543aa..195c6ff 100644 --- a/tests/tc_link_pw.py +++ b/tests/tc_link_pw.py @@ -42,17 +42,6 @@ mic_output.connect(audio_processing_input.right) firefox_input.connect(audio_processing_output) firefox_input.disconnect(alsa_output) -# Connect the last output to the last input -- during testing it was found that -# Midi channel is normally listed first, so this avoids that. -# source = outputs[-1] -# sink = inputs[-1] -# source.connect(sink) - -# Fun Fact! You can connect/disconnect in either order! -# sink.disconnect(source) # Tada! - -# Default Input/Output links will be made with left-left and right-right -# connections; in other words, a straight stereo connection. -# It's possible to manually cross the lines, however! -# source.right.connect(sink.left) -# source.left.connect(sink.right) + + + diff --git a/tests/tc_link_pw_jack.py b/tests/tc_link_pw_jack.py index b70f63a..7ef383b 100644 --- a/tests/tc_link_pw_jack.py +++ b/tests/tc_link_pw_jack.py @@ -33,17 +33,4 @@ firefox.connect(audio_processing) jack_source.disconnect(firefox) audio_processing.disconnect(alsa_inputs) -# Connect the last output to the last input -- during testing it was found that -# Midi channel is normally listed first, so this avoids that. -# source = outputs[-1] -# sink = inputs[-1] -# source.connect(sink) - -# Fun Fact! You can connect/disconnect in either order! -# sink.disconnect(source) # Tada! - -# Default Input/Output links will be made with left-left and right-right -# connections; in other words, a straight stereo connection. -# It's possible to manually cross the lines, however! -# source.right.connect(sink.left) -# source.left.connect(sink.right) + -- 2.39.5