]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Quieten a debug message
authorMike Brady <mikebrady@eircom.net>
Wed, 15 Aug 2018 14:56:14 +0000 (15:56 +0100)
committerMike Brady <mikebrady@eircom.net>
Wed, 15 Aug 2018 14:56:14 +0000 (15:56 +0100)
rtp.c

diff --git a/rtp.c b/rtp.c
index 9d3c6f762220b19410a66f5fbc3dd563ba3921f4..f15cbf02c913673b344b88cd4630c3dd0d323886 100644 (file)
--- 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;