Bump version.
[LameXP.git] / src / Encoder_AAC.cpp
blobf986281609999deb7f514cca2620743a16f8517b
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2015 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 "Encoder_AAC.h"
25 #include "Global.h"
26 #include "Model_Settings.h"
28 #include <QProcess>
29 #include <QDir>
31 static int index2bitrate(const int index)
33 return (index < 32) ? ((index + 1) * 8) : ((index - 15) * 16);
36 ///////////////////////////////////////////////////////////////////////////////
37 // Encoder Info
38 ///////////////////////////////////////////////////////////////////////////////
40 class AACEncoderInfo : public AbstractEncoderInfo
42 virtual bool isModeSupported(int mode) const
44 switch(mode)
46 case SettingsModel::VBRMode:
47 case SettingsModel::ABRMode:
48 case SettingsModel::CBRMode:
49 return true;
50 break;
51 default:
52 MUTILS_THROW("Bad RC mode specified!");
56 virtual int valueCount(int mode) const
58 switch(mode)
60 case SettingsModel::VBRMode:
61 return 21;
62 break;
63 case SettingsModel::ABRMode:
64 case SettingsModel::CBRMode:
65 return 41;
66 break;
67 default:
68 MUTILS_THROW("Bad RC mode specified!");
72 virtual int valueAt(int mode, int index) const
74 switch(mode)
76 case SettingsModel::VBRMode:
77 return qBound(0, index * 5, 100);
78 break;
79 case SettingsModel::ABRMode:
80 case SettingsModel::CBRMode:
81 return qBound(8, index2bitrate(index), 400);
82 break;
83 default:
84 MUTILS_THROW("Bad RC mode specified!");
88 virtual int valueType(int mode) const
90 switch(mode)
92 case SettingsModel::VBRMode:
93 return TYPE_QUALITY_LEVEL_FLT;
94 break;
95 case SettingsModel::ABRMode:
96 return TYPE_APPROX_BITRATE;
97 break;
98 case SettingsModel::CBRMode:
99 return TYPE_BITRATE;
100 break;
101 default:
102 MUTILS_THROW("Bad RC mode specified!");
106 virtual const char *description(void) const
108 static const char* s_description = "Nero AAC Encoder (\x0C2\x0A9 Nero AG)";
109 return s_description;
112 virtual const char *extension(void) const
114 static const char* s_extension = "mp4";
115 return s_extension;
118 static const g_aacEncoderInfo;
120 ///////////////////////////////////////////////////////////////////////////////
121 // Encoder implementation
122 ///////////////////////////////////////////////////////////////////////////////
124 AACEncoder::AACEncoder(void)
126 m_binary_enc(lamexp_tools_lookup("neroAacEnc.exe")),
127 m_binary_tag(lamexp_tools_lookup("neroAacTag.exe")),
128 m_binary_sox(lamexp_tools_lookup("sox.exe"))
130 if(m_binary_enc.isEmpty() || m_binary_tag.isEmpty() || m_binary_sox.isEmpty())
132 MUTILS_THROW("Error initializing AAC encoder. Tool 'neroAacEnc.exe' is not registred!");
135 m_configProfile = 0;
136 m_configEnable2Pass = true;
139 AACEncoder::~AACEncoder(void)
143 bool AACEncoder::encode(const QString &sourceFile, const AudioFileModel_MetaInfo &metaInfo, const unsigned int duration, const QString &outputFile, volatile bool *abortFlag)
145 QProcess process;
146 QStringList args;
147 const QString baseName = QFileInfo(outputFile).fileName();
149 switch(m_configRCMode)
151 case SettingsModel::VBRMode:
152 args << "-q" << QString().sprintf("%.2f", double(qBound(0, m_configBitrate * 5, 100)) / 100.0);
153 break;
154 case SettingsModel::ABRMode:
155 args << "-br" << QString::number(qBound(8, index2bitrate(m_configBitrate), 400) * 1000);
156 break;
157 case SettingsModel::CBRMode:
158 args << "-cbr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 400) * 1000);
159 break;
160 default:
161 MUTILS_THROW("Bad rate-control mode!");
162 break;
165 if(m_configEnable2Pass && (m_configRCMode == SettingsModel::ABRMode))
167 args << "-2pass";
170 switch(m_configProfile)
172 case 1:
173 args << "-lc"; //Forces use of LC AAC profile
174 break;
175 case 2:
176 args << "-he"; //Forces use of HE AAC profile
177 break;
178 case 3:
179 args << "-hev2"; //Forces use of HEv2 AAC profile
180 break;
183 if(!m_configCustomParams.isEmpty()) args << m_configCustomParams.split(" ", QString::SkipEmptyParts);
185 args << "-if" << QDir::toNativeSeparators(sourceFile);
186 args << "-of" << QDir::toNativeSeparators(outputFile);
188 if(!startProcess(process, m_binary_enc, args))
190 return false;
193 bool bTimeout = false;
194 bool bAborted = false;
195 int prevProgress = -1;
198 QRegExp regExp("Processed\\s+(\\d+)\\s+seconds");
199 QRegExp regExp_pass1("First\\s+pass:\\s+processed\\s+(\\d+)\\s+seconds");
200 QRegExp regExp_pass2("Second\\s+pass:\\s+processed\\s+(\\d+)\\s+seconds");
202 while(process.state() != QProcess::NotRunning)
204 if(*abortFlag)
206 process.kill();
207 bAborted = true;
208 emit messageLogged("\nABORTED BY USER !!!");
209 break;
211 process.waitForReadyRead(m_processTimeoutInterval);
212 if(!process.bytesAvailable() && process.state() == QProcess::Running)
214 process.kill();
215 qWarning("NeroAacEnc process timed out <-- killing!");
216 emit messageLogged("\nPROCESS TIMEOUT !!!");
217 bTimeout = true;
218 break;
220 while(process.bytesAvailable() > 0)
222 QByteArray line = process.readLine();
223 QString text = QString::fromUtf8(line.constData()).simplified();
224 if(regExp_pass1.lastIndexIn(text) >= 0)
226 bool ok = false;
227 int progress = regExp_pass1.cap(1).toInt(&ok);
228 if(ok && (duration > 0))
230 int newProgress = qRound((static_cast<double>(progress) / static_cast<double>(duration)) * 50.0);
231 if(newProgress > prevProgress)
233 emit statusUpdated(newProgress);
234 prevProgress = qMin(newProgress + 2, 99);
238 else if(regExp_pass2.lastIndexIn(text) >= 0)
240 bool ok = false;
241 int progress = regExp_pass2.cap(1).toInt(&ok);
242 if(ok && (duration > 0))
244 int newProgress = qRound((static_cast<double>(progress) / static_cast<double>(duration)) * 50.0) + 50;
245 if(newProgress > prevProgress)
247 emit statusUpdated(newProgress);
248 prevProgress = qMin(newProgress + 2, 99);
252 else if(regExp.lastIndexIn(text) >= 0)
254 bool ok = false;
255 int progress = regExp.cap(1).toInt(&ok);
256 if(ok && (duration > 0))
258 int newProgress = qRound((static_cast<double>(progress) / static_cast<double>(duration)) * 100.0);
259 if(newProgress > prevProgress)
261 emit statusUpdated(newProgress);
262 prevProgress = qMin(newProgress + 2, 99);
266 else if(!text.isEmpty())
268 emit messageLogged(text);
273 process.waitForFinished();
274 if(process.state() != QProcess::NotRunning)
276 process.kill();
277 process.waitForFinished(-1);
280 emit statusUpdated(100);
281 emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
283 if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS)
285 return false;
288 emit messageLogged("\n-------------------------------\n");
290 args.clear();
291 args << QDir::toNativeSeparators(outputFile);
293 if(!metaInfo.title().isEmpty()) args << QString("-meta:title=%1").arg(cleanTag(metaInfo.title()));
294 if(!metaInfo.artist().isEmpty()) args << QString("-meta:artist=%1").arg(cleanTag(metaInfo.artist()));
295 if(!metaInfo.album().isEmpty()) args << QString("-meta:album=%1").arg(cleanTag(metaInfo.album()));
296 if(!metaInfo.genre().isEmpty()) args << QString("-meta:genre=%1").arg(cleanTag(metaInfo.genre()));
297 if(!metaInfo.comment().isEmpty()) args << QString("-meta:comment=%1").arg(cleanTag(metaInfo.comment()));
298 if(metaInfo.year()) args << QString("-meta:year=%1").arg(QString::number(metaInfo.year()));
299 if(metaInfo.position()) args << QString("-meta:track=%1").arg(QString::number(metaInfo.position()));
300 if(!metaInfo.cover().isEmpty()) args << QString("-add-cover:%1:%2").arg("front", metaInfo.cover());
302 if(!startProcess(process, m_binary_tag, args))
304 return false;
307 bTimeout = false;
309 while(process.state() != QProcess::NotRunning)
311 if(*abortFlag)
313 process.kill();
314 bAborted = true;
315 emit messageLogged("\nABORTED BY USER !!!");
316 break;
318 process.waitForReadyRead(m_processTimeoutInterval);
319 if(!process.bytesAvailable() && process.state() == QProcess::Running)
321 process.kill();
322 qWarning("NeroAacTag process timed out <-- killing!");
323 emit messageLogged("\nPROCESS TIMEOUT !!!");
324 bTimeout = true;
325 break;
327 while(process.bytesAvailable() > 0)
329 QByteArray line = process.readLine();
330 QString text = QString::fromUtf8(line.constData()).simplified();
331 if(!text.isEmpty())
333 emit messageLogged(text);
338 process.waitForFinished();
339 if(process.state() != QProcess::NotRunning)
341 process.kill();
342 process.waitForFinished(-1);
345 emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
347 if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS)
349 return false;
352 return true;
355 bool AACEncoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
357 if(containerType.compare("Wave", Qt::CaseInsensitive) == 0)
359 if(formatType.compare("PCM", Qt::CaseInsensitive) == 0)
361 return true;
365 return false;
368 void AACEncoder::setProfile(int profile)
370 m_configProfile = profile;
373 void AACEncoder::setEnable2Pass(bool enabled)
375 m_configEnable2Pass = enabled;
378 const bool AACEncoder::needsTimingInfo(void)
380 return true;
383 const AbstractEncoderInfo *AACEncoder::getEncoderInfo(void)
385 return &g_aacEncoderInfo;