mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 15:16:07 +01:00
2018-06-26 Fred Gleason <fredg@paravelsystems.com>
* Added support for filepath wildcards to the JACK client command lines.
This commit is contained in:
20
cae/cae.cpp
20
cae/cae.cpp
@@ -254,27 +254,29 @@ MainObject::MainObject(QObject *parent,const char *name)
|
||||
//
|
||||
// Start Up the Drivers
|
||||
//
|
||||
RDStation *station=new RDStation(rd_config->stationName());
|
||||
cae_station=new RDStation(rd_config->stationName());
|
||||
RDSystem *sys=new RDSystem();
|
||||
system_sample_rate=sys->sampleRate();
|
||||
delete sys;
|
||||
hpiInit(station);
|
||||
alsaInit(station);
|
||||
jackInit(station);
|
||||
ClearDriverEntries(station);
|
||||
hpiInit(cae_station);
|
||||
alsaInit(cae_station);
|
||||
jackInit(cae_station);
|
||||
ClearDriverEntries(cae_station);
|
||||
|
||||
//
|
||||
// Probe Capabilities
|
||||
//
|
||||
ProbeCaps(station);
|
||||
ProbeCaps(cae_station);
|
||||
|
||||
//
|
||||
// Close Database Connection
|
||||
//
|
||||
station->setScanned(true);
|
||||
delete station;
|
||||
cae_station->setScanned(true);
|
||||
/*
|
||||
delete cae_station;
|
||||
cae_station=NULL;
|
||||
db->removeDatabase(rd_config->mysqlDbname());
|
||||
|
||||
*/
|
||||
//
|
||||
// Initialize Mixers
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user