Adapted for the latest MUtils library changes.
[LameXP.git] / src / Filter_Normalize.cpp
blob3c3e62c5b3d5be2fd04a2fa42ff32607cc820429
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #include "Filter_Normalize.h"
25 //Internal
26 #include "Global.h"
28 //MUtils
29 #include <MUtils/Global.h>
30 #include <MUtils/Exception.h>
32 //Qt
33 #include <QDir>
34 #include <QProcess>
35 #include <QRegExp>
37 static double dbToLinear(const double &value)
39 return pow(10.0, value / 20.0);
42 NormalizeFilter::NormalizeFilter(const int &peakVolume, const bool &dnyAudNorm, const bool &channelsCoupled, const int &filterSize)
44 m_binary(lamexp_tools_lookup("sox.exe")),
45 m_useDynAudNorm(dnyAudNorm),
46 m_peakVolume(qMin(-50, qMax(-3200, peakVolume))),
47 m_channelsCoupled(channelsCoupled),
48 m_filterLength(qBound(3, filterSize + (1 - (filterSize % 2)), 301))
50 if(m_binary.isEmpty())
52 MUTILS_THROW("Error initializing SoX filter. Tool 'sox.exe' is not registred!");
56 NormalizeFilter::~NormalizeFilter(void)
60 AbstractFilter::FilterResult NormalizeFilter::apply(const QString &sourceFile, const QString &outputFile, AudioFileModel_TechInfo *const formatInfo, volatile bool *abortFlag)
62 QProcess process;
63 QStringList args;
65 args << "-V3" << "-S";
66 args << "--temp" << ".";
67 args << QDir::toNativeSeparators(sourceFile);
68 args << QDir::toNativeSeparators(outputFile);
70 if(!m_useDynAudNorm)
72 args << "gain";
73 args << (m_channelsCoupled ? "-n" : "-nb");
74 args << QString().sprintf("%.2f", static_cast<double>(m_peakVolume) / 100.0);
76 else
78 args << "dynaudnorm";
79 args << "-p" << QString().sprintf("%.2f", qBound(0.1, dbToLinear(static_cast<double>(m_peakVolume) / 100.0), 1.0));
80 args << "-g" << QString().sprintf("%d", m_filterLength);
81 if(!m_channelsCoupled)
83 args << "-n";
87 if(!startProcess(process, m_binary, args, QFileInfo(outputFile).canonicalPath()))
89 return AbstractFilter::FILTER_FAILURE;
92 bool bTimeout = false;
93 bool bAborted = false;
95 QRegExp regExp("In:(\\d+)(\\.\\d+)*%");
97 while(process.state() != QProcess::NotRunning)
99 if(*abortFlag)
101 process.kill();
102 bAborted = true;
103 emit messageLogged("\nABORTED BY USER !!!");
104 break;
106 process.waitForReadyRead(m_processTimeoutInterval);
107 if(!process.bytesAvailable() && process.state() == QProcess::Running)
109 process.kill();
110 qWarning("SoX process timed out <-- killing!");
111 emit messageLogged("\nPROCESS TIMEOUT !!!");
112 bTimeout = true;
113 break;
115 while(process.bytesAvailable() > 0)
117 QByteArray line = process.readLine();
118 QString text = QString::fromUtf8(line.constData()).simplified();
119 if(regExp.lastIndexIn(text) >= 0)
121 bool ok = false;
122 int progress = regExp.cap(1).toInt(&ok);
123 if(ok) emit statusUpdated(progress);
125 else if(!text.isEmpty())
127 emit messageLogged(text);
132 process.waitForFinished();
133 if(process.state() != QProcess::NotRunning)
135 process.kill();
136 process.waitForFinished(-1);
139 emit statusUpdated(100);
140 emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
142 if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS || QFileInfo(outputFile).size() == 0)
144 return AbstractFilter::FILTER_FAILURE;
147 return AbstractFilter::FILTER_SUCCESS;