From 806f55b0553e01e0849fd05106ef30e40a1575c6 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 21 Oct 2020 02:47:54 +0200 Subject: [PATCH] Removed excess logging from sound/snd_sb_dsp.c. --- src/sound/snd_sb_dsp.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sound/snd_sb_dsp.c b/src/sound/snd_sb_dsp.c index a1fdf215c..4c0bcf6ab 100644 --- a/src/sound/snd_sb_dsp.c +++ b/src/sound/snd_sb_dsp.c @@ -155,8 +155,6 @@ recalc_sb16_filter(int c, int playback_freq) double fC = ((double) playback_freq) / 96000.0; double gain; - pclog("recalc_sb16_filter(%i, %i)\n", c, playback_freq); - for (n = 0; n < SB16_NCoef; n++) { /* Blackman window */ w = 0.42 - (0.5 * cos((2.0*n*M_PI)/(double)(SB16_NCoef-1))) + (0.08 * cos((4.0*n*M_PI)/(double)(SB16_NCoef-1)));