Alsa device enumeration, Audio Device dialog tuning, minimum buffer size support (gx plugins).
This commit is contained in:
@@ -81,12 +81,14 @@ export default class JackServerSettings {
|
||||
? this.alsaOutputDevice.substring(3)
|
||||
: this.alsaOutputDevice;
|
||||
|
||||
let device: string;
|
||||
if (inDev === outDev) {
|
||||
return inDev;
|
||||
device = inDev;
|
||||
|
||||
} else {
|
||||
return inDev + "-> " + outDev;
|
||||
device = inDev + "-> " + outDev;
|
||||
}
|
||||
return `${device} ${this.sampleRate} ${this.bufferSize}x${this.numberOfBuffers}`;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user