Changeset b49daf6
- Timestamp:
- Dec 1, 2004, 1:18:46 AM (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:
- 9cba1eb
- Parents:
- 33bf500
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TODO
r33bf500 rb49daf6 1 1 TODO 2 2 3 - test zero crossing in python/aubiocut 4 - complete manpages 3 5 - drop the multichannel bits ? 4 6 - drop the midi/jack bits ? 5 - looks like it really needs ring buffers 6 - move mathutils and sample to use gsl or some faster library 7 - move mathutils and sample to use gsl or some faster library ? 7 8 - code cleanup and optimisation 9 - really enable ladcca support 8 10 - mix with libsoundtouch and make a melodyne gui -
examples/Makefile.am
r33bf500 rb49daf6 3 3 4 4 # global flags 5 AM_CFLAGS = -I../src 6 AM_LDFLAGS = -L../src -laubio5 AM_CFLAGS = -I../src @LADCCA_CFLAGS@ 6 AM_LDFLAGS = -L../src @LADCCA_LIBS@ -laubio 7 7 #AM_SOURCES = utils.c 8 8 -
examples/Makefile.in
r33bf500 rb49daf6 156 156 157 157 # global flags 158 AM_CFLAGS = -I../src 159 AM_LDFLAGS = -L../src -laubio158 AM_CFLAGS = -I../src @LADCCA_CFLAGS@ 159 AM_LDFLAGS = -L../src @LADCCA_LIBS@ -laubio 160 160 #AM_SOURCES = utils.c 161 161 -
examples/midialsa.c
r33bf500 rb49daf6 3 3 #include "aubio.h" 4 4 #include <unistd.h> 5 6 /* not supported yet */ 7 #ifdef LADCCA_SUPPORT 8 #include <ladcca/ladcca.h> 9 cca_client_t * aubio_cca_client; 10 #endif /* LADCCA_SUPPORT */ 5 11 6 12 int main(int argc, char **argv) { -
examples/midiparse.c
r33bf500 rb49daf6 21 21 #include <unistd.h> 22 22 23 /* not supported yet */ 24 #ifdef LADCCA_SUPPORT 25 #include <ladcca/ladcca.h> 26 cca_client_t * aubio_cca_client; 27 #endif /* LADCCA_SUPPORT */ 28 23 29 int main(int argc, char ** argv) { 24 30 #if ALSA_SUPPORT -
examples/midiplay.c
r33bf500 rb49daf6 26 26 #include <unistd.h> 27 27 28 /* not supported yet */ 29 #ifdef LADCCA_SUPPORT 30 #include <ladcca/ladcca.h> 31 cca_client_t * aubio_cca_client; 32 #endif /* LADCCA_SUPPORT */ 33 28 34 int main(int argc, char ** argv) { 29 35 #if ALSA_SUPPORT -
examples/utils.c
r33bf500 rb49daf6 13 13 #include "utils.h" 14 14 15 /* not supported yet */ 15 16 #ifdef LADCCA_SUPPORT 16 17 #include <ladcca/ladcca.h> -
src/aubio_priv.h
r33bf500 rb49daf6 66 66 #endif 67 67 68 #ifdef ALSA_SUPPORT 69 #ifdef LADCCA_SUPPORT 70 #include <ladcca/ladcca.h> 71 extern cca_client_t * aubio_cca_client; 72 #endif /* LADCCA_SUPPORT */ 73 #endif /* ALSA_SUPPORT */ 74 68 75 69 76 #include "types.h" -
src/midi_alsa_raw.c
r33bf500 rb49daf6 31 31 #include "midi_driver.h" 32 32 33 34 33 #if ALSA_SUPPORT 35 34 … … 43 42 44 43 #include "config.h" 45 46 #ifdef LADCCA_SUPPORT47 #include <ladcca/ladcca.h>48 extern cca_client_t * aubio_cca_client;49 #endif /* LADCCA_SUPPORT */50 51 44 52 45 #define AUBIO_ALSA_DEFAULT_MIDI_DEVICE "default" -
src/midi_alsa_seq.c
r33bf500 rb49daf6 41 41 #include <sys/poll.h> 42 42 /* #include <errno.h> //perror is in stdio.h */ 43 44 45 #ifdef LADCCA_SUPPORT46 #include <ladcca/ladcca.h>47 extern cca_client_t * aubio_cca_client;48 #endif /* LADCCA_SUPPORT */49 43 50 44 #define AUBIO_ALSA_DEFAULT_SEQ_DEVICE "default"
Note: See TracChangeset
for help on using the changeset viewer.