aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-10-11 23:56:45 -0700
committerChris Robinson <[email protected]>2015-10-11 23:56:45 -0700
commited0f3bc1b1164acd4c464f09ef89c6436b1fd16c (patch)
treeed1484d71be903fc69fa70cf10b956f5853d52fd /utils
parentf33d6a5211e6a538e76ab58150501d7fbb0635eb (diff)
Only show certain options that are available at build-time
Diffstat (limited to 'utils')
-rw-r--r--utils/alsoft-config/mainwindow.cpp84
-rw-r--r--utils/alsoft-config/mainwindow.ui17
2 files changed, 90 insertions, 11 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp
index 49a6c474..a79098a4 100644
--- a/utils/alsoft-config/mainwindow.cpp
+++ b/utils/alsoft-config/mainwindow.cpp
@@ -1,3 +1,6 @@
+
+#include "config.h"
+
#include <QFileDialog>
#include <QMessageBox>
#include <QSettings>
@@ -10,27 +13,50 @@ static const struct {
char backend_name[16];
char menu_string[32];
} backendMenuList[] = {
-#ifdef Q_OS_WIN32
- { "mmdevapi", "Add MMDevAPI" },
- { "dsound", "Add DirectSound" },
- { "winmm", "Add Windows Multimedia" },
-#endif
-#ifdef Q_OS_MAC
- { "core", "Add CoreAudio" },
-#endif
+#ifdef HAVE_JACK
{ "jack", "Add JACK" },
+#endif
+#ifdef HAVE_PULSEAUDIO
{ "pulse", "Add PulseAudio" },
-#ifdef Q_OS_UNIX
+#endif
+#ifdef HAVE_ALSA
{ "alsa", "Add ALSA" },
+#endif
+#ifdef HAVE_COREAUDIO
+ { "core", "Add CoreAudio" },
+#endif
+#ifdef HAVE_OSS
{ "oss", "Add OSS" },
+#endif
+#ifdef HAVE_SOLARIS
{ "solaris", "Add Solaris" },
+#endif
+#ifdef HAVE_SNDIO
{ "sndio", "Add SndIO" },
+#endif
+#ifdef HAVE_QSA
{ "qsa", "Add QSA" },
#endif
+#ifdef HAVE_MMDEVAPI
+ { "mmdevapi", "Add MMDevAPI" },
+#endif
+#ifdef HAVE_DSOUND
+ { "dsound", "Add DirectSound" },
+#endif
+#ifdef HAVE_WINMM
+ { "winmm", "Add Windows Multimedia" },
+#endif
+#ifdef HAVE_PORTAUDIO
{ "port", "Add PortAudio" },
+#endif
+#ifdef HAVE_OPENSL
{ "opensl", "Add OpenSL" },
+#endif
+
{ "null", "Add Null Output" },
+#ifdef HAVE_WAVE
{ "wave", "Add Wave Writer" },
+#endif
{ "", "" }
};
@@ -164,6 +190,46 @@ MainWindow::MainWindow(QWidget *parent) :
ui->stereoModeCombo->addItem(stereoModeList[i].name);
ui->stereoModeCombo->adjustSize();
+#if !defined(HAVE_NEON) && !defined(HAVE_SSE)
+ ui->cpuExtDisabledLabel->move(ui->cpuExtDisabledLabel->x(), ui->cpuExtDisabledLabel->y() - 60);
+#else
+ ui->cpuExtDisabledLabel->setVisible(false);
+#endif
+
+#ifndef HAVE_NEON
+
+#ifndef HAVE_SSE4_1
+#ifndef HAVE_SSE3
+#ifndef HAVE_SSE2
+#ifndef HAVE_SSE
+ ui->enableSSECheckBox->setVisible(false);
+#endif /* !SSE */
+ ui->enableSSE2CheckBox->setVisible(false);
+#endif /* !SSE2 */
+ ui->enableSSE3CheckBox->setVisible(false);
+#endif /* !SSE3 */
+ ui->enableSSE41CheckBox->setVisible(false);
+#endif /* !SSE4.1 */
+ ui->enableNeonCheckBox->setVisible(false);
+
+#else /* !Neon */
+
+#ifndef HAVE_SSE4_1
+#ifndef HAVE_SSE3
+#ifndef HAVE_SSE2
+#ifndef HAVE_SSE
+ ui->enableNeonCheckBox->move(ui->enableNeonCheckBox->x(), ui->enableNeonCheckBox->y() - 30);
+ ui->enableSSECheckBox->setVisible(false);
+#endif /* !SSE */
+ ui->enableSSE2CheckBox->setVisible(false);
+#endif /* !SSE2 */
+ ui->enableSSE3CheckBox->setVisible(false);
+#endif /* !SSE3 */
+ ui->enableSSE41CheckBox->setVisible(false);
+#endif /* !SSE4.1 */
+
+#endif
+
mPeriodSizeValidator = new QIntValidator(64, 8192, this);
ui->periodSizeEdit->setValidator(mPeriodSizeValidator);
mPeriodCountValidator = new QIntValidator(2, 16, this);
diff --git a/utils/alsoft-config/mainwindow.ui b/utils/alsoft-config/mainwindow.ui
index 4226a0b4..05cf1a2e 100644
--- a/utils/alsoft-config/mainwindow.ui
+++ b/utils/alsoft-config/mainwindow.ui
@@ -705,7 +705,7 @@ value currently possible is 4.</string>
<enum>QComboBox::AdjustToContents</enum>
</property>
</widget>
- <widget class="QGroupBox" name="groupBox_2">
+ <widget class="QGroupBox" name="cpuExtGroupBox">
<property name="geometry">
<rect>
<x>10</x>
@@ -757,7 +757,7 @@ be useful for preventing those extensions from being used.</string>
<widget class="QCheckBox" name="enableNeonCheckBox">
<property name="geometry">
<rect>
- <x>220</x>
+ <x>100</x>
<y>50</y>
<width>71</width>
<height>31</height>
@@ -802,6 +802,19 @@ be useful for preventing those extensions from being used.</string>
<bool>true</bool>
</property>
</widget>
+ <widget class="QLabel" name="cpuExtDisabledLabel">
+ <property name="geometry">
+ <rect>
+ <x>101</x>
+ <y>80</y>
+ <width>311</width>
+ <height>31</height>
+ </rect>
+ </property>
+ <property name="text">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-style:italic;&quot;&gt;No support enabled for CPU Extensions&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
</widget>
</widget>
<widget class="QWidget" name="tab">