Changeset 4db8eab


Ignore:
Timestamp:
Feb 10, 2013, 6:46:23 AM (11 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:
7b4ea49
Parents:
c8f411b
Message:

src/io/source_{sndfile,apple_audio}.c: quiet samplerate magic

Location:
src/io
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_apple_audio.c

    rc8f411b r4db8eab  
    7878  if (samplerate == 0) {
    7979    samplerate = fileFormat.mSampleRate;
    80     AUBIO_WRN("sampling rate set to 0, automagically adjusting to %d", samplerate);
     80    //AUBIO_DBG("sampling rate set to 0, automagically adjusting to %d\n", samplerate);
    8181  }
    8282  s->samplerate = samplerate;
  • src/io/source_sndfile.c

    rc8f411b r4db8eab  
    9191  if (samplerate == 0) {
    9292    samplerate = s->input_samplerate;
    93     AUBIO_WRN("sampling rate set to 0, automagically adjusting to %d", samplerate);
     93    //AUBIO_DBG("sampling rate set to 0, automagically adjusting to %d\n", samplerate);
    9494  }
    9595  s->samplerate = samplerate;
Note: See TracChangeset for help on using the changeset viewer.