Changeset f382ac6 for ext


Ignore:
Timestamp:
May 23, 2005, 6:32:42 PM (20 years ago)
Author:
Paul Brossier <piem@altern.org>
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
Message:

start fixing woodblock filepaty
start fixing woodblock filepaty

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ext/sndfileio.c

    ree0cc27b rf382ac6  
    4545
    4646        if (! (f->handle = sf_open (outputname, SFM_READ, &sfinfo))) {
    47                 AUBIO_ERR("Not able to open input file %s.\n", outputname);
     47                AUBIO_ERR("Unable to open input file %s.\n", outputname);
    4848                AUBIO_ERR("%s\n",sf_strerror (NULL)); /* libsndfile err msg */
    49                 AUBIO_QUIT(AUBIO_FAIL);
     49                return NULL;
    5050        }       
    5151
    5252        if (sfinfo.channels > MAX_CHANNELS) {
    5353                AUBIO_ERR("Not able to process more than %d channels\n", MAX_CHANNELS);
    54                 AUBIO_QUIT(AUBIO_FAIL);
     54                return NULL;
    5555        }
    5656
Note: See TracChangeset for help on using the changeset viewer.