1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2017 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 "Decoder_Vorbis.h"
29 #include <MUtils/Exception.h>
36 VorbisDecoder::VorbisDecoder(void)
38 m_binary(lamexp_tools_lookup("oggdec.exe"))
40 if(m_binary
.isEmpty())
42 MUTILS_THROW("Error initializing Vorbis decoder. Tool 'oggdec.exe' is not registred!");
46 VorbisDecoder::~VorbisDecoder(void)
50 bool VorbisDecoder::decode(const QString
&sourceFile
, const QString
&outputFile
, QAtomicInt
&abortFlag
)
55 args
<< "-w" << QDir::toNativeSeparators(outputFile
);
56 args
<< QDir::toNativeSeparators(sourceFile
);
58 if(!startProcess(process
, m_binary
, args
))
63 bool bTimeout
= false;
64 bool bAborted
= false;
65 int prevProgress
= -1;
67 QRegExp
regExp(" (\\d+)% decoded.");
69 while(process
.state() != QProcess::NotRunning
)
71 if(checkFlag(abortFlag
))
75 emit
messageLogged("\nABORTED BY USER !!!");
78 process
.waitForReadyRead(m_processTimeoutInterval
);
79 if(!process
.bytesAvailable() && process
.state() == QProcess::Running
)
82 qWarning("OggDec process timed out <-- killing!");
83 emit
messageLogged("\nPROCESS TIMEOUT !!!");
87 while(process
.bytesAvailable() > 0)
89 QByteArray line
= process
.readLine();
90 QString text
= QString::fromUtf8(line
.constData()).simplified();
91 if(regExp
.lastIndexIn(text
) >= 0)
94 int progress
= regExp
.cap(1).toInt(&ok
);
95 if(ok
&& (progress
> prevProgress
))
97 emit
statusUpdated(progress
);
98 prevProgress
= qMin(progress
+ 2, 99);
101 else if(!text
.isEmpty())
103 emit
messageLogged(text
);
108 process
.waitForFinished();
109 if(process
.state() != QProcess::NotRunning
)
112 process
.waitForFinished(-1);
115 emit
statusUpdated(100);
116 emit
messageLogged(QString().sprintf("\nExited with code: 0x%04X", process
.exitCode()));
118 if(bTimeout
|| bAborted
|| process
.exitCode() != EXIT_SUCCESS
|| QFileInfo(outputFile
).size() == 0)
126 bool VorbisDecoder::isFormatSupported(const QString
&containerType
, const QString
&containerProfile
, const QString
&formatType
, const QString
&formatProfile
, const QString
&formatVersion
)
128 if(containerType
.compare("OGG", Qt::CaseInsensitive
) == 0)
130 if(formatType
.compare("Vorbis", Qt::CaseInsensitive
) == 0)
139 const AbstractDecoder::supportedType_t
*VorbisDecoder::supportedTypes(void)
141 static const char *exts
[] =
143 "ogg", "ogx", "ogm", NULL
146 static const supportedType_t s_supportedTypes
[] =
148 { "Ogg Vorbis", exts
},
152 return s_supportedTypes
;