- Timestamp:
- Apr 23, 2016, 12:51:07 AM (9 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:
- c601bcd
- Parents:
- a9ec06f
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fvec.c
ra9ec06f rde66709 126 126 return; 127 127 } 128 #if HAVE_NOOPT128 #ifdef HAVE_NOOPT 129 129 uint_t j; 130 130 for (j=0; j< t->length; j++) { -
src/io/sink.c
ra9ec06f rde66709 71 71 } 72 72 #endif /* HAVE_SINK_APPLE_AUDIO */ 73 #if HAVE_SNDFILE73 #ifdef HAVE_SNDFILE 74 74 s->sink = (void *)new_aubio_sink_sndfile(uri, samplerate); 75 75 if (s->sink) { … … 85 85 } 86 86 #endif /* HAVE_SNDFILE */ 87 #if HAVE_WAVWRITE87 #ifdef HAVE_WAVWRITE 88 88 s->sink = (void *)new_aubio_sink_wavwrite(uri, samplerate); 89 89 if (s->sink) { -
src/io/source.c
ra9ec06f rde66709 58 58 aubio_source_t * new_aubio_source(const char_t * uri, uint_t samplerate, uint_t hop_size) { 59 59 aubio_source_t * s = AUBIO_NEW(aubio_source_t); 60 #if HAVE_LIBAV60 #ifdef HAVE_LIBAV 61 61 s->source = (void *)new_aubio_source_avcodec(uri, samplerate, hop_size); 62 62 if (s->source) { … … 84 84 } 85 85 #endif /* HAVE_SOURCE_APPLE_AUDIO */ 86 #if HAVE_SNDFILE86 #ifdef HAVE_SNDFILE 87 87 s->source = (void *)new_aubio_source_sndfile(uri, samplerate, hop_size); 88 88 if (s->source) { … … 97 97 } 98 98 #endif /* HAVE_SNDFILE */ 99 #if HAVE_WAVREAD99 #ifdef HAVE_WAVREAD 100 100 s->source = (void *)new_aubio_source_wavread(uri, samplerate, hop_size); 101 101 if (s->source) { -
src/temporal/resampler.c
ra9ec06f rde66709 25 25 #include "temporal/resampler.h" 26 26 27 #if HAVE_SAMPLERATE27 #ifdef HAVE_SAMPLERATE 28 28 29 29 #include <samplerate.h> /* from libsamplerate */
Note: See TracChangeset
for help on using the changeset viewer.