Changeset 4a17757
- Timestamp:
- Mar 28, 2014, 4:34: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:
- a3de4be
- Parents:
- 9209c79
- Location:
- tests/src/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/io/test-sink_apple_audio-multi.c
r9209c79 r4a17757 17 17 } 18 18 19 #ifdef __APPLE__19 #ifdef HAVE_SINK_APPLE_AUDIO 20 20 uint_t samplerate = 0; 21 21 uint_t channels = 0; … … 71 71 del_aubio_source(i); 72 72 beach_source: 73 #else 73 #else /* HAVE_SINK_APPLE_AUDIO */ 74 74 err = 3; 75 75 PRINT_ERR("aubio was not compiled with aubio_sink_apple_audio\n"); 76 #endif /* __APPLE__*/76 #endif /* HAVE_SINK_APPLE_AUDIO */ 77 77 return err; 78 78 } -
tests/src/io/test-sink_apple_audio.c
r9209c79 r4a17757 17 17 } 18 18 19 #ifdef __APPLE__19 #ifdef HAVE_SINK_APPLE_AUDIO 20 20 uint_t samplerate = 0; 21 21 uint_t hop_size = 512; … … 60 60 del_fvec(vec); 61 61 beach_fvec: 62 #else 62 #else /* HAVE_SINK_APPLE_AUDIO */ 63 63 err = 3; 64 64 PRINT_ERR("aubio was not compiled with aubio_source_apple_audio\n"); 65 #endif /* __APPLE__*/65 #endif /* HAVE_SINK_APPLE_AUDIO */ 66 66 return err; 67 67 } -
tests/src/io/test-source_apple_audio.c
r9209c79 r4a17757 24 24 } 25 25 26 #if __APPLE__26 #if HAVE_SOURCE_APPLE_AUDIO 27 27 uint_t samplerate = 0; 28 28 uint_t hop_size = 256; … … 53 53 del_aubio_source_apple_audio (s); 54 54 beach: 55 #else 55 #else /* HAVE_SOURCE_APPLE_AUDIO */ 56 56 err = 3; 57 57 PRINT_ERR("aubio was not compiled with aubio_source_apple_audio\n"); 58 #endif /* __APPLE__*/58 #endif /* HAVE_SOURCE_APPLE_AUDIO */ 59 59 return err; 60 60 }
Note: See TracChangeset
for help on using the changeset viewer.