mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 17:13:47 +02:00
2019-11-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatchd(8) that broke audio metering.
This commit is contained in:
@@ -123,10 +123,10 @@ void RDCae::connectHost()
|
||||
}
|
||||
|
||||
|
||||
void RDCae::enableMetering(std::vector<int> *cards)
|
||||
void RDCae::enableMetering(QList<int> *cards)
|
||||
{
|
||||
QString cmd=QString().sprintf("ME %u",cae_meter_socket->port());
|
||||
for(unsigned i=0;i<cards->size();i++) {
|
||||
for(int i=0;i<cards->size();i++) {
|
||||
if(cards->at(i)>=0) {
|
||||
bool found=false;
|
||||
for(unsigned j=0;j<i;j++) {
|
||||
|
Reference in New Issue
Block a user