2023-11-13 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in caed(8) that could cause play-outs from different
	hosts to cross-talk into each other's outputs when using a shared
	caed(8) instance.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2023-11-13 14:51:09 -05:00
parent 8d9e5e8005
commit fb8228914f
9 changed files with 72 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
//
// caed(8) driver for AudioScience HPI audio devices.
//
// (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2021-2023 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -39,6 +39,8 @@ class DriverHpi : public Driver
~DriverHpi();
QString version() const;
bool initialize(unsigned *next_cardnum);
int inputPortQuantity(int card) const;
int outputPortQuantity(int card) const;
void updateMeters();
bool loadPlayback(int card,QString wavename,int *stream);
bool unloadPlayback(int card,int stream);