hist.h \
scale.h \
resample.h \
- onsetdetection.h \
+ onset/onsetdetection.h \
tss.h \
peakpick.h \
biquad.h \
pitchdetection.h \
- pitchmcomb.h \
- pitchyin.h \
- pitchschmitt.h \
- pitchfcomb.h \
- pitchyinfft.h \
+ pitch/pitchmcomb.h \
+ pitch/pitchyin.h \
+ pitch/pitchschmitt.h \
+ pitch/pitchfcomb.h \
+ pitch/pitchyinfft.h \
beattracking.h \
onset.h \
tempo.h \
scale.h \
resample.c \
resample.h \
- onsetdetection.c \
- onsetdetection.h \
+ onset/onsetdetection.c \
+ onset/onsetdetection.h \
tss.c \
tss.h \
peakpick.c \
biquad.h \
pitchdetection.c \
pitchdetection.h \
- pitchmcomb.c \
- pitchmcomb.h \
- pitchyin.c \
- pitchyin.h \
- pitchschmitt.c \
- pitchschmitt.h \
- pitchfcomb.c \
- pitchfcomb.h \
- pitchyinfft.c \
- pitchyinfft.h \
+ pitch/pitchmcomb.c \
+ pitch/pitchmcomb.h \
+ pitch/pitchyin.c \
+ pitch/pitchyin.h \
+ pitch/pitchschmitt.c \
+ pitch/pitchschmitt.h \
+ pitch/pitchfcomb.c \
+ pitch/pitchfcomb.h \
+ pitch/pitchyinfft.c \
+ pitch/pitchyinfft.h \
beattracking.c \
beattracking.h \
onset.c \
#include "mathutils.h"
#include "scale.h"
#include "hist.h"
-#include "onsetdetection.h"
#include "tss.h"
#include "resample.h"
#include "peakpick.h"
#include "biquad.h"
#include "filter.h"
#include "pitchdetection.h"
-#include "pitchmcomb.h"
-#include "pitchyin.h"
-#include "pitchyinfft.h"
-#include "pitchschmitt.h"
-#include "pitchfcomb.h"
+#include "pitch/pitchmcomb.h"
+#include "pitch/pitchyin.h"
+#include "pitch/pitchyinfft.h"
+#include "pitch/pitchschmitt.h"
+#include "pitch/pitchfcomb.h"
#include "beattracking.h"
+#include "onset/detection.h"
#include "onset.h"
#include "tempo.h"
#include "filterbank.h"
extern "C" {
#endif
+/** filterbank object */
typedef struct aubio_filterbank_t_ aubio_filterbank_t;
/** create filterbank object
#include "aubio_priv.h"
#include "sample.h"
-#include "onsetdetection.h"
+#include "onset/detection.h"
#include "phasevoc.h"
#include "peakpick.h"
#include "mathutils.h"
#include "fft.h"
#include "mathutils.h"
#include "hist.h"
-#include "onsetdetection.h"
+#include "onset/onsetdetection.h"
/** structure to store object state */
#include "sample.h"
#include "mathutils.h"
#include "fft.h"
-#include "pitchfcomb.h"
+#include "pitch/pitchfcomb.h"
#define MAX_PEAKS 8
#include "aubio_priv.h"
#include "sample.h"
#include "mathutils.h"
-#include "pitchmcomb.h"
+#include "pitch/pitchmcomb.h"
#define CAND_SWAP(a,b) { register aubio_spectralcandidate_t *t=(a);(a)=(b);(b)=t; }
#include "aubio_priv.h"
#include "sample.h"
-#include "pitchschmitt.h"
+#include "pitch/pitchschmitt.h"
smpl_t aubio_schmittS16LE (aubio_pitchschmitt_t *p, uint_t nframes, signed short int *indata);
#include "aubio_priv.h"
#include "sample.h"
#include "mathutils.h"
-#include "pitchyin.h"
+#include "pitch/pitchyin.h"
/* outputs the difference function */
void aubio_pitchyin_diff(fvec_t * input, fvec_t * yin){
#include "sample.h"
#include "mathutils.h"
#include "fft.h"
-#include "pitchyinfft.h"
+#include "pitch/pitchyinfft.h"
/** pitch yinfft structure */
struct _aubio_pitchyinfft_t {
#include "phasevoc.h"
#include "mathutils.h"
#include "filter.h"
-#include "pitchmcomb.h"
-#include "pitchyin.h"
-#include "pitchfcomb.h"
-#include "pitchschmitt.h"
-#include "pitchyinfft.h"
+#include "pitch/pitchmcomb.h"
+#include "pitch/pitchyin.h"
+#include "pitch/pitchfcomb.h"
+#include "pitch/pitchschmitt.h"
+#include "pitch/pitchyinfft.h"
#include "pitchdetection.h"
typedef smpl_t (*aubio_pitchdetection_func_t)
#include "aubio_priv.h"
#include "sample.h"
-#include "onsetdetection.h"
+#include "onset/detection.h"
#include "beattracking.h"
#include "phasevoc.h"
#include "peakpick.h"