2022-09-09 Fred Gleason <fredg@paravelsystems.com>

* Modified the JACK driver in caed(8) to define the
	'JACK_NO_AUDIO_RESERVATION' in the environment before starting
	jackd(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-09-09 16:33:09 -04:00
parent 00c4d8c441
commit 0f2c136700
2 changed files with 5 additions and 0 deletions

View File

@ -23283,3 +23283,7 @@
2022-09-09 Fred Gleason <fredg@paravelsystems.com>
* Added 'hpklinux-dev' to the list of required developmental
packages for Ubuntu 22.04 in 'INSTALL'.
2022-09-09 Fred Gleason <fredg@paravelsystems.com>
* Modified the JACK driver in caed(8) to define the
'JACK_NO_AUDIO_RESERVATION' in the environment before starting
jackd(1).

View File

@ -472,6 +472,7 @@ bool DriverJack::initialize(unsigned *next_cardnum)
QProcessEnvironment penv=QProcessEnvironment::systemEnvironment();
QProcess *proc=new QProcess(this);
penv.insert("JACK_PROMISCUOUS_SERVER","audio");
penv.insert("JACK_NO_AUDIO_RESERVATION","1");
proc->setProcessEnvironment(penv);
proc->start(program,args);
if(proc->waitForStarted()) {