more work

This commit is contained in:
Bob 2014-02-09 20:44:53 +01:00
parent dcefa4e688
commit dbf28d2215
2 changed files with 46 additions and 6 deletions

View file

@ -39,6 +39,12 @@ class CAmpSwitch
static int SJackProcessCallback(jack_nframes_t nframes, void *arg);
int PJackProcessCallback(jack_nframes_t nframes);
static int SJackSamplerateCallback(jack_nframes_t nframes, void *arg);
int PJackSamplerateCallback(jack_nframes_t nframes);
static void SJackInfoShutdownCallback(jack_status_t code, const char *reason, void *arg);
void PJackInfoShutdownCallback(jack_status_t code, const char *reason);
static void SignalHandler(int signum);
bool m_connected;
@ -50,6 +56,7 @@ class CAmpSwitch
int m_samplerate;
float m_switchtime;
int m_samplecounter;
bool m_jackshutdown;
};
#endif //AMPSWITCH_H