Changeset b78805a
- Timestamp:
- May 22, 2005, 6:36:47 PM (20 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:
- 2cdae81
- Parents:
- 53e4682
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
VERSION
r53e4682 rb78805a 1 1 AUBIO_MAJOR_VERSION=0 2 2 AUBIO_MINOR_VERSION=1 3 AUBIO_PATCH_VERSION= 84 AUBIO_VERSION_STATUS= 3 AUBIO_PATCH_VERSION=9 4 AUBIO_VERSION_STATUS=beta5 5 5 -
examples/Makefile.am
r53e4682 rb78805a 9 9 bin_PROGRAMS = \ 10 10 aubioonset \ 11 aubiotrack \ 11 12 aubionotes 12 13 … … 16 17 aubioonset_SOURCES = aubioonset.c utils.c 17 18 aubionotes_SOURCES = aubionotes.c utils.c 19 aubiotrack_SOURCES = aubiotrack.c utils.c 18 20 19 21 aubioonset_LDADD = @JACK_LIBS@ 20 22 aubionotes_LDADD = @JACK_LIBS@ 23 aubiotrack_LDADD = @JACK_LIBS@ -
src/Makefile.am
r53e4682 rb78805a 20 20 pitchschmitt.h \ 21 21 pitchfcomb.h \ 22 beattracking.h \ 22 23 filter.h 23 24 … … 57 58 pitchfcomb.c \ 58 59 pitchfcomb.h \ 60 beattracking.c \ 61 beattracking.h \ 59 62 filter.c \ 60 63 filter.h -
src/aubio.h
r53e4682 rb78805a 75 75 #include "pitchschmitt.h" 76 76 #include "pitchfcomb.h" 77 #include "beattracking.h" 77 78 78 79 #ifdef __cplusplus -
src/peakpick.c
r53e4682 rb78805a 158 158 uint_t isonset = (p->pickerfn)(onset_peek,1); 159 159 160 if ( isonset && peakval != NULL ) 160 //if ( isonset && peakval != NULL ) 161 if ( peakval != NULL ) 161 162 *peakval = onset_peek->data[i][1]; 162 163
Note: See TracChangeset
for help on using the changeset viewer.