2010-12-19 00:50:22 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2013-02-08 23:50:51 +01:00
|
|
|
// Copyright (C) 2004-2013 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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Decoder_Wave.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QRegExp>
|
2013-10-06 19:28:12 +02:00
|
|
|
|
|
|
|
//Windows includes
|
|
|
|
#define NOMINMAX
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
2010-12-19 00:50:22 +01:00
|
|
|
#include <Shellapi.h>
|
|
|
|
|
|
|
|
#define FIX_SEPARATORS(STR) for(int i = 0; STR[i]; i++) { if(STR[i] == L'/') STR[i] = L'\\'; }
|
|
|
|
|
|
|
|
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(sourceFile, outputFile));
|
|
|
|
|
|
|
|
SHFILEOPSTRUCTW fileOperation;
|
|
|
|
memset(&fileOperation, 0, sizeof(SHFILEOPSTRUCTW));
|
|
|
|
fileOperation.wFunc = FO_COPY;
|
|
|
|
fileOperation.fFlags = FOF_SILENT | FOF_NOCONFIRMATION | FOF_NOCONFIRMMKDIR | FOF_NOERRORUI | FOF_FILESONLY;
|
|
|
|
|
|
|
|
size_t srcLen = wcslen(reinterpret_cast<const wchar_t*>(sourceFile.utf16())) + 3;
|
|
|
|
wchar_t *srcBuffer = new wchar_t[srcLen];
|
|
|
|
memset(srcBuffer, 0, srcLen * sizeof(wchar_t));
|
2011-07-26 22:17:14 +02:00
|
|
|
wcsncpy_s(srcBuffer, srcLen, reinterpret_cast<const wchar_t*>(sourceFile.utf16()), _TRUNCATE);
|
2010-12-19 00:50:22 +01:00
|
|
|
FIX_SEPARATORS (srcBuffer);
|
|
|
|
fileOperation.pFrom = srcBuffer;
|
|
|
|
|
|
|
|
size_t outLen = wcslen(reinterpret_cast<const wchar_t*>(outputFile.utf16())) + 3;
|
|
|
|
wchar_t *outBuffer = new wchar_t[outLen];
|
|
|
|
memset(outBuffer, 0, outLen * sizeof(wchar_t));
|
2011-07-26 22:17:14 +02:00
|
|
|
wcsncpy_s(outBuffer, outLen, reinterpret_cast<const wchar_t*>(outputFile.utf16()), _TRUNCATE);
|
2010-12-19 00:50:22 +01:00
|
|
|
FIX_SEPARATORS (outBuffer);
|
|
|
|
fileOperation.pTo = outBuffer;
|
|
|
|
|
|
|
|
emit statusUpdated(0);
|
|
|
|
int result = SHFileOperation(&fileOperation);
|
|
|
|
emit statusUpdated(100);
|
|
|
|
|
|
|
|
emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", result));
|
|
|
|
|
|
|
|
delete [] srcBuffer;
|
|
|
|
delete [] outBuffer;
|
|
|
|
|
|
|
|
return (result == 0 && fileOperation.fAnyOperationsAborted == false);
|
|
|
|
}
|
|
|
|
|
|
|
|
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)";
|
|
|
|
}
|