summaryrefslogtreecommitdiff
path: root/vamphost/src/testApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'vamphost/src/testApp.h')
-rw-r--r--vamphost/src/testApp.h15
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;
};