From 4fd17de9517cf9f3c0cc2bcc3fce87f026fd6551 Mon Sep 17 00:00:00 2001 From: karlstav Date: Mon, 9 Dec 2019 21:39:37 +0100 Subject: [PATCH] the default EQ should be flat, not this crazy long thing --- config.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/config.c b/config.c index 7414b69..4d61cbf 100644 --- a/config.c +++ b/config.c @@ -1,11 +1,6 @@ #define MAX_ERROR_LEN 1024 -double smoothDef[64] = {0.8, 0.8, 1, 1, 0.8, 0.8, 1, 0.8, 0.8, 1, 1, 0.8, - 1, 1, 0.8, 0.6, 0.6, 0.7, 0.8, 0.8, 0.8, 0.8, 0.8, - 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, - 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, - 0.7, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6}; - +double smoothDef[5] = {1, 1, 1, 1, 1}; char *inputMethod, *outputMethod, *channels;