X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=compress_filter.c;h=ff4ce6fb7663c5a0c35e1a42b433060b3b162b89;hp=15bed6dfa33c896421ab17a89ec426669cf4b025;hb=f0b8296a0635e74aaa58767e513eed226504ec34;hpb=99f21f0b6ecf29f949cdbce285e241a2e3ef3093 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;