Changeset 32d6958
- Timestamp:
- Nov 24, 2007, 10:00:20 PM (17 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- ed631e9
- Parents:
- bcf38fe
- Location:
- src
- Files:
-
- 10 edited
- 20 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
rbcf38fe r32d6958 2 2 pkginclude_HEADERS = aubio.h \ 3 3 types.h \ 4 phasevoc.h \5 mathutils.h \6 fft.h \7 sample.h \8 4 fvec.h \ 9 5 cvec.h \ 10 hist.h \ 11 scale.h \ 12 resample.h \ 13 tss.h \ 14 biquad.h \ 6 mathutils.h \ 7 utils/hist.h \ 8 utils/scale.h \ 9 temporal/resample.h \ 10 temporal/biquad.h \ 11 temporal/filter.h \ 12 spectral/filterbank.h \ 13 spectral/mfcc.c \ 14 spectral/phasevoc.h \ 15 spectral/fft.h \ 16 spectral/tss.h \ 15 17 pitch/pitchdetection.h \ 16 18 pitch/pitchmcomb.h \ … … 23 25 onset/peakpick.h \ 24 26 tempo/tempo.h \ 25 tempo/beattracking.h \ 26 filter.h \ 27 filterbank.h \ 28 mfcc.h 27 tempo/beattracking.h 29 28 30 29 nodist_pkginclude_HEADERS = config.h … … 33 32 libaubio_la_SOURCES = aubio.h \ 34 33 types.h \ 35 phasevoc.c \36 phasevoc.h \37 mathutils.c \38 mathutils.h \39 fft.c \40 fft.h \41 34 fvec.c \ 42 35 fvec.h \ 43 36 cvec.c \ 44 37 cvec.h \ 45 hist.c \ 46 hist.h \ 47 scale.c \ 48 scale.h \ 49 resample.c \ 50 resample.h \ 51 tss.c \ 52 tss.h \ 53 biquad.c \ 54 biquad.h \ 38 mathutils.c \ 39 mathutils.h \ 40 utils/hist.c \ 41 utils/hist.h \ 42 utils/scale.c \ 43 utils/scale.h \ 44 temporal/resample.c \ 45 temporal/resample.h \ 46 temporal/biquad.c \ 47 temporal/biquad.h \ 48 temporal/filter.c \ 49 temporal/filter.h \ 50 spectral/filterbank.c \ 51 spectral/filterbank.h \ 52 spectral/mfcc.h \ 53 spectral/mfcc.c \ 54 spectral/phasevoc.c \ 55 spectral/phasevoc.h \ 56 spectral/fft.c \ 57 spectral/fft.h \ 58 spectral/tss.c \ 59 spectral/tss.h \ 55 60 pitch/pitchdetection.c \ 56 61 pitch/pitchdetection.h \ … … 74 79 tempo/tempo.h \ 75 80 tempo/beattracking.c \ 76 tempo/beattracking.h \ 77 filter.c \ 78 filter.h \ 79 filterbank.c \ 80 filterbank.h \ 81 mfcc.h \ 82 mfcc.c 81 tempo/beattracking.h 83 82 84 83 AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@ -
src/aubio.h
rbcf38fe r32d6958 60 60 #include "types.h" 61 61 #include "sample.h" 62 #include " fft.h"63 #include " phasevoc.h"62 #include "spectral/fft.h" 63 #include "spectral/phasevoc.h" 64 64 #include "mathutils.h" 65 #include " scale.h"66 #include " hist.h"67 #include " tss.h"68 #include " resample.h"69 #include " biquad.h"70 #include " filter.h"65 #include "utils/scale.h" 66 #include "utils/hist.h" 67 #include "spectral/tss.h" 68 #include "temporal/resample.h" 69 #include "temporal/biquad.h" 70 #include "temporal/filter.h" 71 71 #include "pitch/pitchdetection.h" 72 72 #include "pitch/pitchmcomb.h" … … 80 80 #include "tempo/beattracking.h" 81 81 #include "tempo/tempo.h" 82 #include " filterbank.h"83 #include " mfcc.h"82 #include "spectral/filterbank.h" 83 #include "spectral/mfcc.h" 84 84 85 85 #ifdef __cplusplus -
src/onset/onset.c
rbcf38fe r32d6958 21 21 #include "sample.h" 22 22 #include "onset/onsetdetection.h" 23 #include " phasevoc.h"24 #include " peakpick.h"23 #include "spectral/phasevoc.h" 24 #include "onset/peakpick.h" 25 25 #include "mathutils.h" 26 #include "onset .h"26 #include "onset/onset.h" 27 27 28 28 /** structure to store object state */ -
src/onset/onsetdetection.c
rbcf38fe r32d6958 20 20 #include "aubio_priv.h" 21 21 #include "sample.h" 22 #include " fft.h"22 #include "spectral/fft.h" 23 23 #include "mathutils.h" 24 #include " hist.h"24 #include "utils/hist.h" 25 25 #include "onset/onsetdetection.h" 26 26 -
src/onset/peakpick.c
rbcf38fe r32d6958 21 21 #include "sample.h" 22 22 #include "mathutils.h" 23 #include " biquad.h"24 #include " peakpick.h"23 #include "temporal/biquad.h" 24 #include "onset/peakpick.h" 25 25 26 26 /* peak picking parameters, default values in brackets -
src/pitch/pitchdetection.c
rbcf38fe r32d6958 19 19 #include "aubio_priv.h" 20 20 #include "sample.h" 21 #include " phasevoc.h"21 #include "spectral/phasevoc.h" 22 22 #include "mathutils.h" 23 #include " filter.h"23 #include "temporal/filter.h" 24 24 #include "pitch/pitchmcomb.h" 25 25 #include "pitch/pitchyin.h" … … 27 27 #include "pitch/pitchschmitt.h" 28 28 #include "pitch/pitchyinfft.h" 29 #include "pitch detection.h"29 #include "pitch/pitchdetection.h" 30 30 31 31 typedef smpl_t (*aubio_pitchdetection_func_t) -
src/pitch/pitchfcomb.c
rbcf38fe r32d6958 21 21 #include "sample.h" 22 22 #include "mathutils.h" 23 #include " fft.h"23 #include "spectral/fft.h" 24 24 #include "pitch/pitchfcomb.h" 25 25 -
src/pitch/pitchyinfft.c
rbcf38fe r32d6958 20 20 #include "sample.h" 21 21 #include "mathutils.h" 22 #include " fft.h"22 #include "spectral/fft.h" 23 23 #include "pitch/pitchyinfft.h" 24 24 -
src/spectral/fft.c
rbcf38fe r32d6958 22 22 #include "cvec.h" 23 23 #include "mathutils.h" 24 #include " fft.h"24 #include "spectral/fft.h" 25 25 26 26 #if FFTW3F_SUPPORT -
src/spectral/filterbank.c
rbcf38fe r32d6958 22 22 #include "aubio_priv.h" 23 23 #include "sample.h" 24 #include " filterbank.h"24 #include "spectral/filterbank.h" 25 25 #include "mathutils.h" 26 26 -
src/spectral/mfcc.c
rbcf38fe r32d6958 23 23 #include "aubio_priv.h" 24 24 #include "sample.h" 25 #include "fft.h" 26 #include "filterbank.h" 27 #include "mfcc.h" 28 #include "math.h" 25 #include "spectral/fft.h" 26 #include "spectral/filterbank.h" 27 #include "spectral/mfcc.h" 29 28 30 29 /** Internal structure for mfcc object **/ -
src/spectral/mfcc.h
rbcf38fe r32d6958 29 29 extern "C" { 30 30 #endif 31 32 #include "sample.h"33 #include "filterbank.h"34 31 35 32 typedef struct aubio_mfcc_t_ aubio_mfcc_t; -
src/spectral/phasevoc.c
rbcf38fe r32d6958 21 21 #include "fvec.h" 22 22 #include "cvec.h" 23 #include "fft.h"24 23 #include "mathutils.h" 25 #include "phasevoc.h" 24 #include "spectral/fft.h" 25 #include "spectral/phasevoc.h" 26 26 27 27 /** phasevocoder internal object */ -
src/spectral/tss.c
rbcf38fe r32d6958 23 23 #include "sample.h" 24 24 #include "mathutils.h" 25 #include " tss.h"25 #include "spectral/tss.h" 26 26 27 27 struct _aubio_tss_t -
src/tempo/beattracking.c
rbcf38fe r32d6958 21 21 #include "sample.h" 22 22 #include "mathutils.h" 23 #include " beattracking.h"23 #include "tempo/beattracking.h" 24 24 25 25 uint_t fvec_gettimesig(smpl_t * acf, uint_t acflen, uint_t gp); -
src/tempo/tempo.c
rbcf38fe r32d6958 22 22 #include "onset/onsetdetection.h" 23 23 #include "tempo/beattracking.h" 24 #include " phasevoc.h"24 #include "spectral/phasevoc.h" 25 25 #include "onset/peakpick.h" 26 26 #include "mathutils.h" 27 #include "tempo .h"27 #include "tempo/tempo.h" 28 28 29 29 /* structure to store object state */ -
src/temporal/biquad.c
rbcf38fe r32d6958 21 21 #include "sample.h" 22 22 #include "mathutils.h" 23 #include " biquad.h"23 #include "temporal/biquad.h" 24 24 25 25 /** \note this file needs to be in double or more less precision would lead to large -
src/temporal/filter.c
rbcf38fe r32d6958 25 25 #include "sample.h" 26 26 #include "mathutils.h" 27 #include " filter.h"27 #include "temporal/filter.h" 28 28 29 29 struct _aubio_filter_t { -
src/temporal/resample.c
rbcf38fe r32d6958 23 23 #include "aubio_priv.h" 24 24 #include "sample.h" 25 #include " resample.h"25 #include "temporal/resample.h" 26 26 27 27 struct _aubio_resampler_t { -
src/utils/hist.c
rbcf38fe r32d6958 19 19 #include "aubio_priv.h" 20 20 #include "sample.h" 21 #include " scale.h"21 #include "utils/scale.h" 22 22 #include "mathutils.h" //vec_min vec_max 23 #include " hist.h"23 #include "utils/hist.h" 24 24 25 25 /******** -
src/utils/scale.c
rbcf38fe r32d6958 20 20 #include "aubio_priv.h" 21 21 #include "sample.h" 22 #include " scale.h"22 #include "utils/scale.h" 23 23 24 24 struct _aubio_scale_t {
Note: See TracChangeset
for help on using the changeset viewer.