-
Notifications
You must be signed in to change notification settings - Fork 15
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
No audio input ports #28
Comments
On 1.0.3 with rtaudio 6 no audio ports are created at all and this error printed:
Still couldn't build latest master: Show output
Ping @abique |
I'm on arch linux. I get the same in this function void AudioSettingsWidget::updateDeviceList() {
_deviceChooser->clear();
auto deviceCount = _audio->getDeviceCount();
bool deviceFound = false;
// Populate the choices
for (int i = 0; i < deviceCount; ++i) {
auto deviceInfo = _audio->getDeviceInfo(i); For But for each and the resulting deviceInfo struct is empty / zero initialized |
This was a breaking change in RtAudio where the argument in getDeviceInfo(i) is no longer an index, but a device id. The fix can be like
|
@digitalsignalperson thanks for your input (pun intended), for me this fixes the device selection but still no input ports show up in JACK :( |
clap-host 1.0.2 on Linux + PipeWire (jack/alsa/pulse) doesn't provide any way to connect audio inputs, only outputs are created. This is fine for synthesizer/instrument plugins but not for effects.
Couldn't test latest master since that doesn't build at all.
The text was updated successfully, but these errors were encountered: