Go to the documentation of this file.00001 #ifndef _OF_SOUND_STREAM
00002 #define _OF_SOUND_STREAM
00003
00004 #include "ofConstants.h"
00005 #include "ofBaseApp.h"
00006 #include "ofEvents.h"
00007 #include "ofMath.h"
00008
00009 void ofSoundStreamSetup(int nOutputChannels, int nInputChannels, ofBaseApp * OFSA = NULL);
00010 void ofSoundStreamSetup(int nOutputChannels, int nInputChannels, int sampleRate, int bufferSize, int nBuffers);
00011 void ofSoundStreamSetup(int nOutputChannels, int nInputChannels, ofBaseApp * OFSA, int sampleRate, int bufferSize, int nBuffers);
00012 void ofSoundStreamStop();
00013 void ofSoundStreamStart();
00014 void ofSoundStreamClose();
00015 void ofSoundStreamListDevices();
00016
00017 #endif