Mercurial > hg > multitrack-audio-matcher
diff src/LiveAudioInput.h @ 0:c4f9e49226eb
Initialising repository. Live osc input registered. Files analysed offline.
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Tue, 31 Jan 2012 13:54:17 +0000 |
parents | |
children | 852173ca8365 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/LiveAudioInput.h Tue Jan 31 13:54:17 2012 +0000 @@ -0,0 +1,37 @@ +/* + * LiveAudioInput.h + * MultipleAudioMathcher + * + * Created by Andrew on 30/01/2012. + * Copyright 2012 QMUL. All rights reserved. + * + */ + +#ifndef LIVE_AUDIO_INPUT_H +#define LIVE_AUDIO_INPUT_H + + +#include "ofMain.h" +#include "ChromaOnset.h" + + +struct AudioEvent { + double millisTime; + double frameTime; + double pitch; + int type; +}; + +class LiveAudioInput{ + +public: + + LiveAudioInput(); + + typedef std::vector<AudioEvent> EventVector; + + + + +}; +#endif \ No newline at end of file