diff options
author | Chris Robinson <[email protected]> | 2017-02-21 16:54:55 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-02-21 16:54:55 -0800 |
commit | d3cc867bd42759cb8e294d691354187984f96ff4 (patch) | |
tree | 3898ba30214046d880c92470ebd43247ac00d2d4 /utils | |
parent | 864d5387dda119d9faecfd62226b62f1a8af8532 (diff) |
Increase the default effect slot and send count
The default number of auxiliary effect slots is now 64. This can still be
raised by the config file without a hard maximum, but incurs processing cost
for each effect slot generated by the app.
The default number of source sends is now actually 2, as per the EFX docs.
However, it can be raised up to 16 via ALC_MAX_AUXILIARY_SENDS attribute
requests, rather than the previous 4.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 4 | ||||
-rw-r--r-- | utils/alsoft-config/mainwindow.ui | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index e4dc10fc..200f6811 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -295,9 +295,9 @@ MainWindow::MainWindow(QWidget *parent) : mSourceCountValidator = new QIntValidator(0, 4096, this); ui->srcCountLineEdit->setValidator(mSourceCountValidator); - mEffectSlotValidator = new QIntValidator(0, 16, this); + mEffectSlotValidator = new QIntValidator(0, 64, this); ui->effectSlotLineEdit->setValidator(mEffectSlotValidator); - mSourceSendValidator = new QIntValidator(0, 4, this); + mSourceSendValidator = new QIntValidator(0, 16, this); ui->srcSendLineEdit->setValidator(mSourceSendValidator); mSampleRateValidator = new QIntValidator(8000, 192000, this); ui->sampleRateCombo->lineEdit()->setValidator(mSampleRateValidator); diff --git a/utils/alsoft-config/mainwindow.ui b/utils/alsoft-config/mainwindow.ui index afb91996..b886dc00 100644 --- a/utils/alsoft-config/mainwindow.ui +++ b/utils/alsoft-config/mainwindow.ui @@ -1649,13 +1649,13 @@ may help when apps use more than the system can handle.</string> <string/> </property> <property name="maxLength"> - <number>1</number> + <number>3</number> </property> <property name="frame"> <bool>true</bool> </property> <property name="placeholderText"> - <string>4</string> + <string>64</string> </property> </widget> <widget class="QLabel" name="label_8"> @@ -1686,7 +1686,7 @@ may help when apps use more than the system can handle.</string> <property name="toolTip"> <string>The number of auxiliary sends per source. When not specified, it allows the app to request how many it wants. The maximum -value currently possible is 4.</string> +value currently possible is 16.</string> </property> <property name="maxLength"> <number>1</number> |