- Timestamp:
- May 23, 2005, 6:32:42 PM (20 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:
- 0c20582
- Parents:
- ee0cc27b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ext/sndfileio.c
ree0cc27b rf382ac6 45 45 46 46 if (! (f->handle = sf_open (outputname, SFM_READ, &sfinfo))) { 47 AUBIO_ERR(" Notable to open input file %s.\n", outputname);47 AUBIO_ERR("Unable to open input file %s.\n", outputname); 48 48 AUBIO_ERR("%s\n",sf_strerror (NULL)); /* libsndfile err msg */ 49 AUBIO_QUIT(AUBIO_FAIL);49 return NULL; 50 50 } 51 51 52 52 if (sfinfo.channels > MAX_CHANNELS) { 53 53 AUBIO_ERR("Not able to process more than %d channels\n", MAX_CHANNELS); 54 AUBIO_QUIT(AUBIO_FAIL);54 return NULL; 55 55 } 56 56
Note: See TracChangeset
for help on using the changeset viewer.