mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 17:32:20 +02:00
2019-07-19 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug that broke the 'Switch Take' ['ST'], 'Switch Add' ['SA'] and 'Switch Remove' ['SR'] RMLs when using the 'Local Audio Adapter' driver.
This commit is contained in:
parent
ba501b0259
commit
504754f726
@ -18867,3 +18867,7 @@
|
||||
* Added an rdlogmanager(1) man page.
|
||||
2019-07-16 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added an rdairplay(1) man page.
|
||||
2019-07-19 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug that broke the 'Switch Take' ['ST'],
|
||||
'Switch Add' ['SA'] and 'Switch Remove' ['SR'] RMLs when
|
||||
using the 'Local Audio Adapter' driver.
|
||||
|
@ -508,9 +508,9 @@ bool CaeServer::ProcessCommand(int id,const QString &cmd)
|
||||
if(ok&&(card<RD_MAX_CARDS)) {
|
||||
unsigned input=f0.at(2).toUInt(&ok);
|
||||
if(ok&&(input<RD_MAX_PORTS)) {
|
||||
unsigned output=f0.at(2).toUInt(&ok);
|
||||
unsigned output=f0.at(3).toUInt(&ok);
|
||||
if(ok&&(output<RD_MAX_PORTS)) {
|
||||
int level=f0.at(3).toUInt(&ok);
|
||||
int level=f0.at(4).toInt(&ok);
|
||||
if(ok) {
|
||||
emit setAudioPassthroughLevelReq(id,card,input,output,level);
|
||||
was_processed=true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user