From 60341ac292bb9ba6f1d33632f8fd8e767c6a99d4 Mon Sep 17 00:00:00 2001 From: mick grierson Date: Tue, 27 Oct 2015 17:05:12 +0000 Subject: clean up --- .../iOS/maximFeatureExtractor0.8.4/src/ofApp.h | 99 ---------------------- 1 file changed, 99 deletions(-) delete mode 100755 ofxMaxim/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h (limited to 'ofxMaxim/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h') diff --git a/ofxMaxim/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h b/ofxMaxim/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h deleted file mode 100755 index 5756aa3..0000000 --- a/ofxMaxim/openFrameworksExamples/iOS/maximFeatureExtractor0.8.4/src/ofApp.h +++ /dev/null @@ -1,99 +0,0 @@ -#pragma once - -#include "ofMain.h" -#include "ofxiOS.h" -#include "ofxiOSExtras.h" -#include "ofxMaxim.h" -#include "ofxGui.h" -#include "ofxOsc.h" - -#include - -#include "maxiMFCC.h" -#define HOST "localhost" -#define PORT 6448 - - -class ofApp : public ofxiOSApp{ - -public: - void setup(); - void update(); - void draw(); - void exit(); - - void touchDown(ofTouchEventArgs & touch); - void touchMoved(ofTouchEventArgs & touch); - void touchUp(ofTouchEventArgs & touch); - void touchDoubleTap(ofTouchEventArgs & touch); - void touchCancelled(ofTouchEventArgs & touch); - - void lostFocus(); - void gotFocus(); - void gotMemoryWarning(); - void deviceOrientationChanged(int newOrientation); - void audioIn(float * input, int bufferSize, int nChannels); - void audioOut(float * output, int bufferSize, int nChannels); - - float * lAudioOut; /* outputs */ - float * rAudioOut; - - float * lAudioIn; /* inputs */ - float * rAudioIn; - - int initialBufferSize; /* buffer size */ - - - //MAXIMILIAN STUFF: - - int sampleRate; - int bufferSize; - - maxiMix channel1; - - double wave,sample,outputs[2], ifftVal; - maxiMix mymix; - maxiOsc osc; - - ofxMaxiFFTOctaveAnalyzer oct; - int nAverages; - float *ifftOutput; - int ifftSize; - - float peakFreq = 0; - float centroid = 0; - float RMS = 0; - - ofxMaxiIFFT ifft; - ofxMaxiFFT mfft; - int fftSize; - int bins, dataSize; - - float callTime; - timeval callTS, callEndTS; - - maxiMFCC mfcc; - double *mfccs; - - maxiSample samp; - - //GUI STUFF - bool bHide; - - ofxToggle mfccToggle; - ofxToggle fftToggle; - ofxToggle chromagramToggle; - ofxToggle peakFrequencyToggle; - ofxToggle centroidToggle; - ofxToggle rmsToggle; - - ofxPanel gui; - - ofTrueTypeFont myfont; - - ofxOscSender sender; - - -}; - - -- cgit v1.3