1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
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_Resample.h"
27 #include "Model_AudioFile.h"
30 #include <MUtils/Exception.h>
37 static __inline
int multipleOf(int value
, int base
)
39 return qRound(static_cast<double>(value
) / static_cast<double>(base
)) * base
;
42 ResampleFilter::ResampleFilter(int samplingRate
, int bitDepth
)
44 m_binary(lamexp_tools_lookup("sox.exe"))
46 if(m_binary
.isEmpty())
48 MUTILS_THROW("Error initializing SoX filter. Tool 'sox.exe' is not registred!");
51 m_samplingRate
= (samplingRate
> 0) ? qBound(8000, samplingRate
, 192000) : 0;
52 m_bitDepth
= (bitDepth
> 0) ? qBound(8, multipleOf(bitDepth
, 8), 32) : 0;
54 if((m_samplingRate
== 0) && (m_bitDepth
== 0))
56 qWarning("ResampleFilter: Nothing to do, filter will be NOP!");
60 ResampleFilter::~ResampleFilter(void)
64 bool ResampleFilter::apply(const QString
&sourceFile
, const QString
&outputFile
, AudioFileModel_TechInfo
*formatInfo
, volatile bool *abortFlag
)
69 if((m_samplingRate
== formatInfo
->audioSamplerate()) && (m_bitDepth
== formatInfo
->audioBitdepth()))
71 messageLogged("Skipping resample filter!");
72 qDebug("Resampling filter target samplerate/bitdepth is equals to the format of the input file, skipping!");
76 args
<< "-V3" << "-S";
77 args
<< "--guard" << "--temp" << ".";
78 args
<< QDir::toNativeSeparators(sourceFile
);
82 args
<< "-b" << QString::number(m_bitDepth
);
85 args
<< QDir::toNativeSeparators(outputFile
);
90 args
<< ((m_bitDepth
> 16) ? "-v" : "-h"); //if resampling at/to > 16 bit depth (i.e. most commonly 24-bit), use VHQ (-v), otherwise, use HQ (-h)
91 args
<< ((m_samplingRate
> 40000) ? "-L" : "-I"); //if resampling to < 40k, use intermediate phase (-I), otherwise use linear phase (-L)
92 args
<< QString::number(m_samplingRate
);
95 if((m_bitDepth
|| m_samplingRate
) && (m_bitDepth
<= 16))
97 args
<< "dither" << "-s"; //if you're mastering to 16-bit, you also need to add 'dither' (and in most cases noise-shaping) after the rate
100 if(!startProcess(process
, m_binary
, args
, QFileInfo(outputFile
).canonicalPath()))
105 bool bTimeout
= false;
106 bool bAborted
= false;
108 QRegExp
regExp("In:(\\d+)(\\.\\d+)*%");
110 while(process
.state() != QProcess::NotRunning
)
116 emit
messageLogged("\nABORTED BY USER !!!");
119 process
.waitForReadyRead(m_processTimeoutInterval
);
120 if(!process
.bytesAvailable() && process
.state() == QProcess::Running
)
123 qWarning("SoX process timed out <-- killing!");
124 emit
messageLogged("\nPROCESS TIMEOUT !!!");
128 while(process
.bytesAvailable() > 0)
130 QByteArray line
= process
.readLine();
131 QString text
= QString::fromUtf8(line
.constData()).simplified();
132 if(regExp
.lastIndexIn(text
) >= 0)
135 int progress
= regExp
.cap(1).toInt(&ok
);
136 if(ok
) emit
statusUpdated(progress
);
138 else if(!text
.isEmpty())
140 emit
messageLogged(text
);
145 process
.waitForFinished();
146 if(process
.state() != QProcess::NotRunning
)
149 process
.waitForFinished(-1);
152 emit
statusUpdated(100);
153 emit
messageLogged(QString().sprintf("\nExited with code: 0x%04X", process
.exitCode()));
155 if(bTimeout
|| bAborted
|| process
.exitCode() != EXIT_SUCCESS
|| QFileInfo(outputFile
).size() == 0)
160 if(m_samplingRate
) formatInfo
->setAudioSamplerate(m_samplingRate
);
161 if(m_bitDepth
) formatInfo
->setAudioBitdepth(m_bitDepth
);