diff options
| author | Comment <tim@gray.(none)> | 2013-05-21 01:06:38 +0100 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-05-21 01:06:38 +0100 |
| commit | e453cc17916908104467875db31e3fa08817cce1 (patch) | |
| tree | 4f89f8d0b1d2cad4b5ffd1ec7607a846c26dedfd /vamphost/src/testApp.h | |
| parent | cb7ec4965e6ec3d2142522c5c110b240f800e55d (diff) | |
vamphost
Diffstat (limited to 'vamphost/src/testApp.h')
| -rw-r--r-- | vamphost/src/testApp.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/vamphost/src/testApp.h b/vamphost/src/testApp.h index 855889c..ad24233 100644 --- a/vamphost/src/testApp.h +++ b/vamphost/src/testApp.h @@ -20,8 +20,21 @@ public: void mousePressed(int x, int y, int button); void mouseReleased(int x, int y, int button); void windowResized(int w, int h); - + void audioIn(float * input, int bufferSize, int nChannels); + + vector <float> left; + vector <float> right; + vector <float> volHistory; + + int bufferCounter; + int drawCounter; + + float smoothedVol; + float scaledVol; + + ofSoundStream soundStream; + Vamphost vamphost; }; |
