From: Andre Noll Date: Sat, 9 Oct 2021 17:42:52 +0000 (+0200) Subject: compress: Demote log level of clip message. X-Git-Tag: v0.6.4~5 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=c22c653634658511cd10c423840ca462ba8b12b3 compress: Demote log level of clip message. These messages trigger from time to time without having much audible effect, so they are usually not serious. --- diff --git a/compress_filter.c b/compress_filter.c index 15bed6df..ff4ce6fb 100644 --- a/compress_filter.c +++ b/compress_filter.c @@ -79,7 +79,7 @@ next_buffer: sample *= pcd->current_gain; sample >>= inertia + 1; if (sample > 32767) { /* clip */ - PARA_WARNING_LOG("clip: %d\n", sample); + PARA_NOTICE_LOG("clip: %d\n", sample); sample = 32767; pcd->current_gain = (3 * pcd->current_gain + (1 << inertia)) / 4;