diff options
author | Chris Robinson <[email protected]> | 2015-11-04 06:40:54 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-11-04 06:40:54 -0800 |
commit | bd0acf2843830a0891ac3e1ce3b0219cc9c12b81 (patch) | |
tree | 81ab094bfc5a4d3bd05b836af6b9a2cb0d8f9d35 /utils | |
parent | c57f57192067e2d68cfe4ab0fc9479d2453bfbda (diff) |
Replace the Lanczos window with Kaiser for the sinc resampler
Diffstat (limited to 'utils')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index dff8b930..75703f03 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -89,8 +89,8 @@ static const struct { { "Default", "" }, { "Point (low quality, fast)", "point" }, { "Linear (basic quality, fast)", "linear" }, - { "Sinc-Lanczos 4pt (good quality)", "sinc4" }, - { "Sinc-Lanczos 8pt (high quality, slow)", "sinc8" }, + { "4-Point Sinc (good quality)", "sinc4" }, + { "8-Point Sinc (high quality, slow)", "sinc8" }, { "", "" } }, stereoModeList[] = { @@ -355,7 +355,7 @@ void MainWindow::loadConfig(const QString &fname) if(resampler.isEmpty() == false) { /* The "cubic" resampler is no longer supported. It's been replaced by - * "sinc4" (4-point Sinc-Lanczos). */ + * "sinc4". */ if(resampler == "cubic") resampler = "sinc4"; |