/////////////////////////////////////////////////////////////////////////////// // Simple x264 Launcher // 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. // // 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 #include #include class QLibrary; class SysinfoModel; class QFile; class AvisynthCheckThread : public QThread { Q_OBJECT public: static bool detect(SysinfoModel *sysinfo); protected: AvisynthCheckThread(const SysinfoModel *const sysinfo); ~AvisynthCheckThread(void); int getSuccess(void) { return m_success; } bool getException(void) { return m_exception; } typedef enum _AvisynthFlags { AVISYNTH_X86 = 0x1, AVISYNTH_X64 = 0x2 } AvisynthFlags; private slots: void start(Priority priority = InheritPriority) { QThread::start(priority); } private: volatile bool m_exception; int m_success; const SysinfoModel *const m_sysinfo; static QMutex m_avsLock; static QScopedPointer m_avsDllPath[2]; //Entry point virtual void run(void); //Functions static void detectAvisynthVersion1(int &success, const SysinfoModel *const sysinfo, volatile bool *exception); static void detectAvisynthVersion2(int &success, const SysinfoModel *const sysinfo, volatile bool *exception); static void detectAvisynthVersion3(int &success, const SysinfoModel *const sysinfo); //Internal functions static bool checkAvisynth(const SysinfoModel *const sysinfo, QFile *&path, const bool &x64); };