diff options
author | Chris Robinson <[email protected]> | 2023-01-27 02:39:42 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-01-27 02:39:42 -0800 |
commit | dc61e7c59d24fb4422c3ea939eeb32ef2f4038c4 (patch) | |
tree | 2415972bdadbaaf0dc530fa7dc3fe53cfecb3271 /utils/alsoft-config | |
parent | 3f6e0e3d9666c7fc0f7599aa35535ad0f843a88a (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.cpp | 2 |
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" }, |