Mercurial > hg > btrack
diff src/OnsetDetectionFunction.h @ 92:f6708e4c69f1
More code style updates
author | Adam Stark <adamstark.uk@gmail.com> |
---|---|
date | Wed, 11 May 2016 00:19:06 +0100 |
parents | b387d8327729 |
children | 4aa362058011 |
line wrap: on
line diff
--- a/src/OnsetDetectionFunction.h Wed May 11 00:06:52 2016 +0100 +++ b/src/OnsetDetectionFunction.h Wed May 11 00:19:06 2016 +0100 @@ -63,7 +63,7 @@ * @param hopSize_ the hop size in audio samples * @param frameSize_ the frame size in audio samples */ - OnsetDetectionFunction(int hopSize_,int frameSize_); + OnsetDetectionFunction (int hopSize_, int frameSize_); /** Constructor @@ -72,7 +72,7 @@ * @param onsetDetectionFunctionType_ the type of onset detection function to use - (see OnsetDetectionFunctionType) * @param windowType the type of window to use (see WindowType) */ - OnsetDetectionFunction(int hopSize_,int frameSize_,int onsetDetectionFunctionType_,int windowType_); + OnsetDetectionFunction (int hopSize_, int frameSize_, int onsetDetectionFunctionType_, int windowType_); /** Destructor */ ~OnsetDetectionFunction(); @@ -82,7 +82,7 @@ * @param hopSize_ the hop size in audio samples * @param frameSize_ the frame size in audio samples */ - void initialise(int hopSize_,int frameSize_); + void initialise (int hopSize_, int frameSize_); /** Initialisation Function * @param hopSize_ the hop size in audio samples @@ -90,18 +90,18 @@ * @param onsetDetectionFunctionType_ the type of onset detection function to use - (see OnsetDetectionFunctionType) * @param windowType the type of window to use (see WindowType) */ - void initialise(int hopSize_,int frameSize_,int onsetDetectionFunctionType_,int windowType_); + void initialise (int hopSize_, int frameSize_, int onsetDetectionFunctionType_, int windowType_); /** Process input frame and calculate detection function sample * @param buffer a pointer to an array containing the audio samples to be processed * @returns the onset detection function sample */ - double calculateOnsetDetectionFunctionSample(double *buffer); + double calculateOnsetDetectionFunctionSample (double* buffer); /** Set the detection function type * @param onsetDetectionFunctionType_ the type of onset detection function to use - (see OnsetDetectionFunctionType) */ - void setOnsetDetectionFunctionType(int onsetDetectionFunctionType_); + void setOnsetDetectionFunctionType (int onsetDetectionFunctionType_); private: @@ -171,8 +171,8 @@ int windowType; /**< type of window used in calculations */ fftw_plan p; /**< fftw plan */ - fftw_complex *complexIn; /**< to hold complex fft values for input */ - fftw_complex *complexOut; /**< to hold complex fft values for output */ + fftw_complex* complexIn; /**< to hold complex fft values for input */ + fftw_complex* complexOut; /**< to hold complex fft values for output */ bool initialised; /**< flag indicating whether buffers and FFT plans are initialised */