Changeset 21234ee for src/io/source.c
- Timestamp:
- Dec 18, 2013, 8:07:27 AM (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:
- 6465d7f
- Parents:
- 1573b16 (diff), c3c6305 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source.c
r1573b16 r21234ee 24 24 #include "fmat.h" 25 25 #include "io/source.h" 26 #ifdef HAVE_ AVCODEC26 #ifdef HAVE_LIBAV 27 27 #include "io/source_avcodec.h" 28 #endif /* HAVE_ AVCODEC*/28 #endif /* HAVE_LIBAV */ 29 29 #ifdef __APPLE__ 30 30 #include "io/source_apple_audio.h" … … 53 53 aubio_source_t * new_aubio_source(char_t * uri, uint_t samplerate, uint_t hop_size) { 54 54 aubio_source_t * s = AUBIO_NEW(aubio_source_t); 55 #if HAVE_ AVCODEC55 #if HAVE_LIBAV 56 56 s->source = (void *)new_aubio_source_avcodec(uri, samplerate, hop_size); 57 57 if (s->source) { … … 64 64 return s; 65 65 } 66 #endif /* HAVE_ AVCODEC*/66 #endif /* HAVE_LIBAV */ 67 67 #ifdef __APPLE__ 68 68 s->source = (void *)new_aubio_source_apple_audio(uri, samplerate, hop_size);
Note: See TracChangeset
for help on using the changeset viewer.