OSDN Git Service

Don't apply "downmix" filter on Mono or Stereo sources. Always apply when channel...
[lamexp/LameXP.git] / src / Filter_Normalize.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2016 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.
10 //
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.
15 //
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.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include "Filter_Normalize.h"
24
25 //Internal
26 #include "Global.h"
27
28 //MUtils
29 #include <MUtils/Global.h>
30 #include <MUtils/Exception.h>
31
32 //Qt
33 #include <QDir>
34 #include <QProcess>
35 #include <QRegExp>
36
37 static double dbToLinear(const double &value)
38 {
39         return pow(10.0, value / 20.0);
40 }
41
42 NormalizeFilter::NormalizeFilter(const int &peakVolume, const bool &dnyAudNorm, const bool &channelsCoupled, const int &filterSize)
43 :
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))
49 {
50         if(m_binary.isEmpty())
51         {
52                 MUTILS_THROW("Error initializing SoX filter. Tool 'sox.exe' is not registred!");
53         }
54 }
55
56 NormalizeFilter::~NormalizeFilter(void)
57 {
58 }
59
60 bool NormalizeFilter::apply(const QString &sourceFile, const QString &outputFile, AudioFileModel_TechInfo *const formatInfo, volatile bool *abortFlag)
61 {
62         QProcess process;
63         QStringList args;
64
65         args << "-V3" << "-S";
66         args << "--temp" << ".";
67         args << QDir::toNativeSeparators(sourceFile);
68         args << QDir::toNativeSeparators(outputFile);
69
70         if(!m_useDynAudNorm)
71         {
72                 args << "gain";
73                 args << (m_channelsCoupled ? "-n" : "-nb");
74                 args << QString().sprintf("%.2f", static_cast<double>(m_peakVolume) / 100.0);
75         }
76         else
77         {
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)
82                 {
83                         args << "-n";
84                 }
85         }
86
87         if(!startProcess(process, m_binary, args, QFileInfo(outputFile).canonicalPath()))
88         {
89                 return false;
90         }
91
92         bool bTimeout = false;
93         bool bAborted = false;
94
95         QRegExp regExp("In:(\\d+)(\\.\\d+)*%");
96
97         while(process.state() != QProcess::NotRunning)
98         {
99                 if(*abortFlag)
100                 {
101                         process.kill();
102                         bAborted = true;
103                         emit messageLogged("\nABORTED BY USER !!!");
104                         break;
105                 }
106                 process.waitForReadyRead(m_processTimeoutInterval);
107                 if(!process.bytesAvailable() && process.state() == QProcess::Running)
108                 {
109                         process.kill();
110                         qWarning("SoX process timed out <-- killing!");
111                         emit messageLogged("\nPROCESS TIMEOUT !!!");
112                         bTimeout = true;
113                         break;
114                 }
115                 while(process.bytesAvailable() > 0)
116                 {
117                         QByteArray line = process.readLine();
118                         QString text = QString::fromUtf8(line.constData()).simplified();
119                         if(regExp.lastIndexIn(text) >= 0)
120                         {
121                                 bool ok = false;
122                                 int progress = regExp.cap(1).toInt(&ok);
123                                 if(ok) emit statusUpdated(progress);
124                         }
125                         else if(!text.isEmpty())
126                         {
127                                 emit messageLogged(text);
128                         }
129                 }
130         }
131
132         process.waitForFinished();
133         if(process.state() != QProcess::NotRunning)
134         {
135                 process.kill();
136                 process.waitForFinished(-1);
137         }
138         
139         emit statusUpdated(100);
140         emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
141
142         if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS || QFileInfo(outputFile).size() == 0)
143         {
144                 return false;
145         }
146         
147         return true;
148 }