From: Mike Brady Date: Wed, 15 Aug 2018 14:56:14 +0000 (+0100) Subject: Quieten a debug message X-Git-Tag: 3.3RC0~252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac336974b6ca74147aae7253d9961213f119a665;p=thirdparty%2Fshairport-sync.git Quieten a debug message --- diff --git a/rtp.c b/rtp.c index 9d3c6f76..f15cbf02 100644 --- a/rtp.c +++ b/rtp.c @@ -1050,7 +1050,7 @@ int sanitised_source_rate_information(int64_t *frames, uint64_t *time, rtsp_conn double calculated_frame_rate = ((1.0 * local_frames) / local_time) * (uint64_t)0x100000000; if (((calculated_frame_rate / conn->input_rate) > 1.001) || ((calculated_frame_rate / conn->input_rate) < 0.999)) { - debug(1, "input frame rate out of bounds at %.2f fps.", calculated_frame_rate); + // debug(1, "input frame rate out of bounds at %.2f fps.", calculated_frame_rate); result = 1; } else { *frames = local_frames;