Changeset 5ab8e59


Ignore:
Timestamp:
Jan 24, 2014, 5:12:08 PM (10 years ago)
Author:
Paul Brossier <piem@piem.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:
52ca8a3
Parents:
98a3887
Message:

src/io/source{,_wavread}.c: improve error message

Location:
src/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/io/source.c

    r98a3887 r5ab8e59  
    104104  }
    105105#endif /* HAVE_WAVREAD */
    106   AUBIO_ERROR("failed creating aubio source with %s\n", uri);
     106  AUBIO_ERROR("source: failed creating aubio source with %s"
     107     " at samplerate %d with hop_size %d\n", uri, samplerate, hop_size);
    107108  AUBIO_FREE(s);
    108109  return NULL;
  • src/io/source_wavread.c

    r98a3887 r5ab8e59  
    225225
    226226beach:
    227   AUBIO_ERR("source_wavread: can not read %s at samplerate %dHz with a hop_size of %d\n",
    228       s->path, s->samplerate, s->hop_size);
     227  //AUBIO_ERR("source_wavread: can not read %s at samplerate %dHz with a hop_size of %d\n",
     228  //    s->path, s->samplerate, s->hop_size);
    229229  del_aubio_source_wavread(s);
    230230  return NULL;
Note: See TracChangeset for help on using the changeset viewer.