aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-10-26 22:21:16 -0700
committerChris Robinson <[email protected]>2022-10-26 22:21:16 -0700
commit02d0b3495a79a4e8b0070dae6e8e4deed87fed6c (patch)
treec9204a183bde7da791c8b8b88215e1937256dc5f /core
parent2c5476ea24bfaf94f6a11fb1e673e5630fb5fdab (diff)
Switch back to the FIR256 filter by default
There is a surprisingly noticeable amount of static caused by the IIR filter in particular circumstances. The 256-point filter is only slightly slower, but the frequency response should be good enough to use as a default for now.
Diffstat (limited to 'core')
-rw-r--r--core/uhjfilter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/uhjfilter.h b/core/uhjfilter.h
index 49819f00..e0aa73d2 100644
--- a/core/uhjfilter.h
+++ b/core/uhjfilter.h
@@ -16,7 +16,7 @@ enum class UhjQualityType : uint8_t {
IIR = 0,
FIR256,
FIR512,
- Default = IIR
+ Default = FIR256
};
extern UhjQualityType UhjDecodeQuality;