diff options
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; }; |
