From: Mike Brady Date: Mon, 15 Apr 2019 16:22:52 +0000 (+0100) Subject: a bit less noisy debug/timing of soxr! X-Git-Tag: 3.3rc4~2^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cdb4dc70e0f8cb9ef44e563b380e87c3cab706c;p=thirdparty%2Fshairport-sync.git a bit less noisy debug/timing of soxr! --- diff --git a/player.c b/player.c index 7f409f35..55cf01a6 100644 --- a/player.c +++ b/player.c @@ -1435,10 +1435,10 @@ int stuff_buffer_soxr_32(int32_t *inptr, int32_t *scratchBuffer, int length, }; } - if (packets_processed % 1 == 0) { + if (packets_processed % 10 == 0) { debug(1, "soxr_oneshot execution time in microseconds: mean, standard deviation and max " "for %" PRId32 " interpolations in the last " - "1 packets. %10.1f, %10.1f, %10.1f.", + "10 packets. %10.1f, %10.1f, %10.1f.", stat_n, stat_mean, sqrtf(stat_M2 / (stat_n - 1)), longest_soxr_execution_time_us); stat_n = 0; stat_mean = 0.0;