From: Jörn Nettingsmeier Date: Fri, 15 Feb 2019 18:31:23 +0000 (+0000) Subject: comment out some debug statements not relevant to users X-Git-Tag: 3.3RC0~52^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7c7365bb11c4d8e47f4244986d46ae9b603c87a;p=thirdparty%2Fshairport-sync.git comment out some debug statements not relevant to users --- diff --git a/audio_jack.c b/audio_jack.c index 5cde2213..f5aa7cea 100644 --- a/audio_jack.c +++ b/audio_jack.c @@ -380,7 +380,7 @@ int jack_delay(long *the_delay) { // subsequent transfer because transfer is blocked // by the mutex size_t audio_occupancy_now = jack_ringbuffer_read_space(jackbuf) / bytes_per_frame; - debug(1, "JN: audio_occupancy_now is %d.", audio_occupancy_now); + // debug(1, "audio_occupancy_now is %d.", audio_occupancy_now); pthread_mutex_unlock(&buffer_mutex); int64_t frames_processed_since_latest_latency_check = (delta * 44100) >> 32; @@ -395,12 +395,12 @@ int jack_delay(long *the_delay) { // if (base_latency == 0) // base_latency = (latest_right_latency_range.min + latest_right_latency_range.max) / 2; *the_delay = base_latency + audio_occupancy_now - frames_processed_since_latest_latency_check; - debug(1,"reporting a delay of %d frames",*the_delay); + // debug(1,"reporting a delay of %d frames",*the_delay); return 0; } void jack_flush() { - debug(1, "Only the consumer can safely flush a lock-free ringbuffer. Asking the process callback to do it..."); + // debug(1, "Only the consumer can safely flush a lock-free ringbuffer. Asking the process callback to do it..."); flush_please = 1; }