add pipe audio output
also add ability to disable CLI control/status completely
This commit is contained in:
parent
d41eeb02be
commit
c9309834ce
12 changed files with 261 additions and 16 deletions
|
|
@ -72,6 +72,7 @@ enum DivAudioEngines {
|
|||
DIV_AUDIO_JACK=0,
|
||||
DIV_AUDIO_SDL=1,
|
||||
DIV_AUDIO_PORTAUDIO=2,
|
||||
DIV_AUDIO_PIPE=3,
|
||||
|
||||
DIV_AUDIO_NULL=126,
|
||||
DIV_AUDIO_DUMMY=127
|
||||
|
|
@ -405,6 +406,7 @@ class DivEngine {
|
|||
bool shallStop, shallStopSched;
|
||||
bool endOfSong;
|
||||
bool consoleMode;
|
||||
bool disableStatusOut;
|
||||
bool extValuePresent;
|
||||
bool repeatPattern;
|
||||
bool metronome;
|
||||
|
|
@ -1099,7 +1101,7 @@ class DivEngine {
|
|||
void rescanMidiDevices();
|
||||
|
||||
// set the console mode.
|
||||
void setConsoleMode(bool enable);
|
||||
void setConsoleMode(bool enable, bool statusOut=true);
|
||||
|
||||
// get metronome
|
||||
bool getMetronome();
|
||||
|
|
@ -1282,6 +1284,7 @@ class DivEngine {
|
|||
shallStopSched(false),
|
||||
endOfSong(false),
|
||||
consoleMode(false),
|
||||
disableStatusOut(false),
|
||||
extValuePresent(false),
|
||||
repeatPattern(false),
|
||||
metronome(false),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue