ref: 4db8eab0280562c3f520be7f3796c4e8cd61b43d
parent: c8f411b370ef2c09db04b4484130405f707a345a
author: Paul Brossier <piem@piem.org>
date: Sat Feb 9 19:46:23 EST 2013
src/io/source_{sndfile,apple_audio}.c: quiet samplerate magic
--- a/src/io/source_apple_audio.c
+++ b/src/io/source_apple_audio.c
@@ -77,7 +77,7 @@
if (samplerate == 0) {
samplerate = fileFormat.mSampleRate;
- AUBIO_WRN("sampling rate set to 0, automagically adjusting to %d", samplerate);
+ //AUBIO_DBG("sampling rate set to 0, automagically adjusting to %d\n", samplerate);
}
s->samplerate = samplerate;
--- a/src/io/source_sndfile.c
+++ b/src/io/source_sndfile.c
@@ -90,7 +90,7 @@
if (samplerate == 0) {
samplerate = s->input_samplerate;
- AUBIO_WRN("sampling rate set to 0, automagically adjusting to %d", samplerate);
+ //AUBIO_DBG("sampling rate set to 0, automagically adjusting to %d\n", samplerate);
}
s->samplerate = samplerate;
/* compute input block size required before resampling */