diff options
author | Chris Robinson <[email protected]> | 2015-09-29 18:27:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-09-29 20:39:12 -0700 |
commit | dc10e56babf61b62c6cc779414103d7183100c58 (patch) | |
tree | 302dd43223b8c3678cbc726655de628bf5b617fb /utils/alsoft-config | |
parent | e13d553aefe68f63c1c7d479df80c44f4ab70a0f (diff) |
Implement a 6-point sinc-lanczos filter
Diffstat (limited to 'utils/alsoft-config')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index 310d9260..24372688 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -35,7 +35,7 @@ static const struct { }; static const struct { - const char name[32]; + const char name[48]; const char value[16]; } speakerModeList[] = { { "Autodetect", "" }, @@ -63,7 +63,8 @@ static const struct { { "Default", "" }, { "Point (low quality, fast)", "point" }, { "Linear (basic quality, fast)", "linear" }, - { "Sinc-Lanczos (good quality)", "sinc4" }, + { "Sinc-Lanczos 4pt (good quality)", "sinc4" }, + { "Sinc-Lanczos 6pt (high quality, slow)", "sinc6" }, { "", "" } }, stereoModeList[] = { |