summaryrefslogtreecommitdiff
path: root/glitcher/src/ofApp.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2014-02-26 13:37:37 +0000
committerTim Redfern <tim@eclectronics.org>2014-02-26 13:37:37 +0000
commit84b516956e7ca1ddd7d89890d9ff81f71fcff217 (patch)
treec24ffe4f37a414dc30d74ce0e0bd1e70bc2271d7 /glitcher/src/ofApp.h
parent0e436679aa8c09a08e20849f204c969eb2d875b8 (diff)
adding audio to example
Diffstat (limited to 'glitcher/src/ofApp.h')
-rw-r--r--glitcher/src/ofApp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/glitcher/src/ofApp.h b/glitcher/src/ofApp.h
index fd72e87..c6c831b 100644
--- a/glitcher/src/ofApp.h
+++ b/glitcher/src/ofApp.h
@@ -18,7 +18,13 @@ public:
void mouseReleased(int x, int y, int button);
void windowResized(int w, int h);
+ void audioIn(float * input, int bufferSize, int nChannels);
+
ofxCvColorImage buffer;
ofFbo renderFBO;
+ IplImage tmp;
+
+ ofSoundStream soundStream;
+
};