2023-12-15 Fred Gleason <fredg@paravelsystems.com>

* Removed vestigal support for the 'Output Stream Status' ['MS']
	CAE command.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2023-12-15 13:48:36 -05:00
parent dbf2a745eb
commit ad36ab606d
6 changed files with 6 additions and 88 deletions

View File

@@ -246,22 +246,6 @@ void RDCae::enableMetering(QList<int> *cards)
unsigned RDCae::loadPlay(unsigned card,unsigned port,const QString &name)
{
/*
cae_serials[card][port]=next_serial_number++;
SendCommand(QString().sprintf("LP %u %u %u %s!",
cae_serials[card][port],card,port,
name.toUtf8().constData()));
__RDCae_PlayChannel chan(card,port);
for(QMap<unsigned,__RDCae_PlayChannel>::const_iterator it=cae_play_channels.begin();it!=cae_play_channels.end();it++) {
if(it.value()==chan) {
emit playPortStatusChanged(card,port,true);
break;
}
}
cae_play_channelscae_serials
return cae_serials[card][port];
*/
unsigned serial=next_serial_number++;
SendCommand(QString().sprintf("LP %u %u %u %s!",
serial,card,port,name.toUtf8().constData()));