Changeset c0a1906 for src/io/source_apple_audio.c
- Timestamp:
- Dec 17, 2018, 2:01:06 AM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
- Children:
- 0512fca
- Parents:
- d16fbba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_apple_audio.c
rd16fbba rc0a1906 95 95 UInt32 propSize; 96 96 97 if (s->path) AUBIO_FREE(s->path);98 97 s->path = AUBIO_ARRAY(char_t, strnlen(path, PATH_MAX) + 1); 99 98 strncpy(s->path, path, strnlen(path, PATH_MAX) + 1); … … 294 293 295 294 void del_aubio_source_apple_audio(aubio_source_apple_audio_t * s){ 295 AUBIO_ASSERT(s); 296 296 aubio_source_apple_audio_close (s); 297 297 if (s->path) AUBIO_FREE(s->path); 298 298 freeAudioBufferList(&s->bufferList); 299 299 AUBIO_FREE(s); 300 return;301 300 } 302 301
Note: See TracChangeset
for help on using the changeset viewer.