aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-01-27 02:39:42 -0800
committerChris Robinson <[email protected]>2023-01-27 02:39:42 -0800
commitdc61e7c59d24fb4422c3ea939eeb32ef2f4038c4 (patch)
tree2415972bdadbaaf0dc530fa7dc3fe53cfecb3271 /utils/alsoft-config
parent3f6e0e3d9666c7fc0f7599aa35535ad0f843a88a (diff)
Change the default resampler to cubic
This has notably better quality than linear, while still being faster than bsinc.
Diffstat (limited to 'utils/alsoft-config')
-rw-r--r--utils/alsoft-config/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp
index 39b773af..bee7022f 100644
--- a/utils/alsoft-config/mainwindow.cpp
+++ b/utils/alsoft-config/mainwindow.cpp
@@ -107,8 +107,8 @@ const struct NameValuePair {
}, resamplerList[] = {
{ "Point", "point" },
{ "Linear", "linear" },
- { "Default (Linear)", "" },
{ "Cubic Spline", "cubic" },
+ { "Default (Cubic Spline)", "" },
{ "11th order Sinc (fast)", "fast_bsinc12" },
{ "11th order Sinc", "bsinc12" },
{ "23rd order Sinc (fast)", "fast_bsinc24" },