aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config/mainwindow.cpp
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2022-01-05 20:32:03 -0800
committerChris Robinson <chris.kcat@gmail.com>2022-01-05 20:32:03 -0800
commit43ec687ee94fffb90a97841406c36ce08291bf80 (patch)
tree339e5b9c65373288daafbbc8e2b93499aa977b3a /utils/alsoft-config/mainwindow.cpp
parent0515d08fe10178c042b70cd9b6a71cd91c348303 (diff)
Add a third-order ambisonic decoder for HRTF
Using the 20-channel dodecahedron, seems to be good enough to handle 16-channel third-order ambisonics.
Diffstat (limited to 'utils/alsoft-config/mainwindow.cpp')
-rw-r--r--utils/alsoft-config/mainwindow.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp
index 7f21f57b..9fb6bd76 100644
--- a/utils/alsoft-config/mainwindow.cpp
+++ b/utils/alsoft-config/mainwindow.cpp
@@ -137,6 +137,7 @@ static const struct NameValuePair {
}, hrtfModeList[] = {
{ "1st Order Ambisonic", "ambi1" },
{ "2nd Order Ambisonic", "ambi2" },
+ { "3rd Order Ambisonic", "ambi3" },
{ "Default (Full)", "" },
{ "Full", "full" },
@@ -767,11 +768,9 @@ void MainWindow::loadConfig(const QString &fname)
QString hrtfmode{settings.value("hrtf-mode").toString().trimmed()};
ui->hrtfmodeSlider->setValue(2);
- ui->hrtfmodeLabel->setText(hrtfModeList[2].name);
- /* The "basic" mode name is no longer supported, and "ambi3" is temporarily
- * disabled. Use "ambi2" instead.
- */
- if(hrtfmode == "basic" || hrtfmode == "ambi3")
+ ui->hrtfmodeLabel->setText(hrtfModeList[3].name);
+ /* The "basic" mode name is no longer supported. Use "ambi2" instead. */
+ if(hrtfmode == "basic")
hrtfmode = "ambi2";
for(int i = 0;hrtfModeList[i].name[0];i++)
{