/////////////////////////////////////////////////////////////////////////////// // LameXP - Audio Encoder Front-End // Copyright (C) 2004-2015 LoRd_MuldeR // // 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 // (at your option) any later version, but always including the *additional* // restrictions defined in the "License.txt" file. // // 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 /////////////////////////////////////////////////////////////////////////////// //Internal #include "Decoder_Wave.h" #include "Global.h" //MUtils #include //Qt #include //Type typedef struct _ProgressData { WaveDecoder *const instance; volatile bool *const abrtFlag; } ProgressData; WaveDecoder::WaveDecoder(void) { } WaveDecoder::~WaveDecoder(void) { } bool WaveDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag) { emit messageLogged(QString("Copy file \"%1\" to \"%2\"").arg(QDir::toNativeSeparators(sourceFile), QDir::toNativeSeparators(outputFile))); emit statusUpdated(0); ProgressData progressData = { this, abortFlag }; const bool okay = MUtils::OS::copy_file(sourceFile, outputFile, true, progressHandler, &progressData); emit statusUpdated(100); if(okay) { emit messageLogged("File copied successfully."); } else { emit messageLogged("Failed to copy file!"); } return okay; } 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; } QStringList WaveDecoder::supportedTypes(void) { return QStringList() << "Waveform Audio File (*.wav)"; } bool WaveDecoder::progressHandler(const double &progress, void *const data) { if(data) { //qWarning("Copy progress: %.2f", progress); reinterpret_cast(data)->instance->updateProgress(progress); return (!(*reinterpret_cast(data)->abrtFlag)); } return true; } void WaveDecoder::updateProgress(const double &progress) { emit statusUpdated(qBound(0, qRound(progress * 100.0), 100)); }