Changeset 9209c79 for src/io/sink.c
- Timestamp:
- Mar 27, 2014, 7:56:11 PM (11 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:
- 4a17757
- Parents:
- dba9b33
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/sink.c
rdba9b33 r9209c79 24 24 #include "fmat.h" 25 25 #include "io/sink.h" 26 #ifdef __APPLE__26 #ifdef HAVE_SINK_APPLE_AUDIO 27 27 #include "io/sink_apple_audio.h" 28 #endif /* __APPLE__*/28 #endif /* HAVE_SINK_APPLE_AUDIO */ 29 29 #ifdef HAVE_SNDFILE 30 30 #include "io/sink_sndfile.h" … … 57 57 aubio_sink_t * new_aubio_sink(char_t * uri, uint_t samplerate) { 58 58 aubio_sink_t * s = AUBIO_NEW(aubio_sink_t); 59 #ifdef __APPLE__59 #ifdef HAVE_SINK_APPLE_AUDIO 60 60 s->sink = (void *)new_aubio_sink_apple_audio(uri, samplerate); 61 61 if (s->sink) { … … 70 70 return s; 71 71 } 72 #endif /* __APPLE__*/72 #endif /* HAVE_SINK_APPLE_AUDIO */ 73 73 #if HAVE_SNDFILE 74 74 s->sink = (void *)new_aubio_sink_sndfile(uri, samplerate);
Note: See TracChangeset
for help on using the changeset viewer.