added: implementation for the bitpanel

This commit is contained in:
Bob van Loosen 2012-11-18 15:54:41 +01:00
parent fd0c6044d2
commit ca402f4a2e
2 changed files with 89 additions and 8 deletions

View file

@ -45,11 +45,20 @@ class CBitVis
int m_samplecounter;
int m_nrffts;
struct peak
{
int64_t time;
float value;
};
peak* m_peakholds;
CTcpClientSocket m_socket;
void SetupSignals();
void ProcessSignalfd();
void ProcessAudio();
void SendData(int64_t time);
static void JackError(const char* jackerror);
static void JackInfo(const char* jackinfo);
};