2010-11-06 23:04:47 +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-11-06 23:04:47 +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-11-06 23:04:47 +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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
#include "Global.h"
|
2010-11-06 23:04:47 +01:00
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Splash Thread
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class InitializationThread: public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-04-11 02:53:29 +02:00
|
|
|
InitializationThread(const lamexp_cpu_t *cpuFeatures);
|
2010-11-06 23:04:47 +01:00
|
|
|
void run();
|
|
|
|
bool getSuccess(void) { return !isRunning() && m_bSuccess; }
|
2011-06-24 18:17:04 +02:00
|
|
|
bool getSlowIndicator(void) { return m_slowIndicator; }
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2011-10-19 00:24:03 +02:00
|
|
|
static void selfTest(void);
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
private:
|
|
|
|
void delay(void);
|
2011-01-04 19:58:18 +01:00
|
|
|
void initTranslations(void);
|
2010-11-12 15:58:53 +01:00
|
|
|
void initNeroAac(void);
|
2011-08-19 15:27:58 +02:00
|
|
|
void initFhgAac(void);
|
2011-11-21 01:22:41 +01:00
|
|
|
void initQAac(void);
|
2010-11-12 15:58:53 +01:00
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
bool m_bSuccess;
|
2011-06-24 18:17:04 +02:00
|
|
|
lamexp_cpu_t m_cpuFeatures;
|
|
|
|
bool m_slowIndicator;
|
2010-11-06 23:04:47 +01:00
|
|
|
};
|