2010-12-19 00:50:22 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2015-01-01 18:06:21 +01:00
|
|
|
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-12-19 00:50:22 +01:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2010-12-19 00:50:22 +01:00
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-01-02 23:46:03 +01:00
|
|
|
//Internal
|
2010-12-19 00:50:22 +01:00
|
|
|
#include "Decoder_Wave.h"
|
|
|
|
#include "Global.h"
|
|
|
|
|
2015-01-02 23:46:03 +01:00
|
|
|
//MUtils
|
|
|
|
#include <MUtils/OSSupport.h>
|
2010-12-19 00:50:22 +01:00
|
|
|
|
2015-01-02 23:46:03 +01:00
|
|
|
//Qt
|
|
|
|
#include <QDir>
|
2010-12-19 00:50:22 +01:00
|
|
|
|
2015-03-22 21:33:15 +01:00
|
|
|
//Type
|
|
|
|
typedef struct _ProgressData
|
|
|
|
{
|
|
|
|
WaveDecoder *const instance;
|
|
|
|
volatile bool *const abrtFlag;
|
|
|
|
}
|
|
|
|
ProgressData;
|
|
|
|
|
2010-12-19 00:50:22 +01:00
|
|
|
WaveDecoder::WaveDecoder(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WaveDecoder::~WaveDecoder(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WaveDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag)
|
|
|
|
{
|
2015-01-04 19:41:39 +01:00
|
|
|
emit messageLogged(QString("Copy file \"%1\" to \"%2\"").arg(QDir::toNativeSeparators(sourceFile), QDir::toNativeSeparators(outputFile)));
|
2010-12-19 00:50:22 +01:00
|
|
|
emit statusUpdated(0);
|
2015-03-22 21:33:15 +01:00
|
|
|
|
|
|
|
ProgressData progressData = { this, abortFlag };
|
|
|
|
const bool okay = MUtils::OS::copy_file(sourceFile, outputFile, true, progressHandler, &progressData);
|
|
|
|
|
2010-12-19 00:50:22 +01:00
|
|
|
emit statusUpdated(100);
|
|
|
|
|
2015-01-02 23:46:03 +01:00
|
|
|
if(okay)
|
|
|
|
{
|
|
|
|
emit messageLogged("File copied successfully.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
emit messageLogged("Failed to copy file!");
|
|
|
|
}
|
2010-12-19 00:50:22 +01:00
|
|
|
|
2015-01-02 23:46:03 +01:00
|
|
|
return okay;
|
2010-12-19 00:50:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool WaveDecoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
|
|
|
|
{
|
|
|
|
if(containerType.compare("Wave", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
if(formatType.compare("PCM", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-12-20 22:13:01 +01:00
|
|
|
QStringList WaveDecoder::supportedTypes(void)
|
|
|
|
{
|
|
|
|
return QStringList() << "Waveform Audio File (*.wav)";
|
|
|
|
}
|
2015-03-22 21:33:15 +01:00
|
|
|
|
|
|
|
bool WaveDecoder::progressHandler(const double &progress, void *const data)
|
|
|
|
{
|
|
|
|
if(data)
|
|
|
|
{
|
|
|
|
//qWarning("Copy progress: %.2f", progress);
|
|
|
|
reinterpret_cast<ProgressData*>(data)->instance->updateProgress(progress);
|
|
|
|
return (!(*reinterpret_cast<ProgressData*>(data)->abrtFlag));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaveDecoder::updateProgress(const double &progress)
|
|
|
|
{
|
|
|
|
emit statusUpdated(qBound(0, qRound(progress * 100.0), 100));
|
|
|
|
}
|