From d3cc867bd42759cb8e294d691354187984f96ff4 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 21 Feb 2017 16:54:55 -0800 Subject: 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. --- utils/alsoft-config/mainwindow.cpp | 4 ++-- utils/alsoft-config/mainwindow.ui | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'utils/alsoft-config') 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. - 1 + 3 true - 4 + 64 @@ -1686,7 +1686,7 @@ may help when apps use more than the system can handle. 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. +value currently possible is 16. 1 -- cgit v1.2.3