summaryrefslogtreecommitdiff
path: root/emu8910.js
diff options
context:
space:
mode:
Diffstat (limited to 'emu8910.js')
-rw-r--r--emu8910.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/emu8910.js b/emu8910.js
index fea4283..b3fbcb4 100644
--- a/emu8910.js
+++ b/emu8910.js
@@ -55,10 +55,10 @@ const DAC_SHIFT = 40;
const CUBIC_INTERPOL = 0.5;
-const FIR_CUTOFF = 3000; // Hz
-const FIR_TAPS = 100; // N taps
+const FIR_CUTOFF = 10000; // Hz
+const FIR_TAPS = 50; // N taps
-const WAVE_OVERSAMPLE = 8;
+const WAVE_OVERSAMPLE = 4;
var FIR = []; // coeff
class Interpolator {