OSDN Git Service

Moved some more functions into MUtilities libraries.
[x264-launcher/x264-launcher.git] / src / thread_vapoursynth.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include <QThread>
25 #include <QMutex>
26
27 class QLibrary;
28 class QFile;
29
30 class VapourSynthCheckThread : public QThread
31 {
32         Q_OBJECT
33
34 public:
35         static int detect(QString &path);
36         static void unload(void);
37
38 protected:
39         VapourSynthCheckThread(void);
40         ~VapourSynthCheckThread(void);
41
42         bool getSuccess(void) { return m_success; }
43         bool getException(void) { return m_exception; }
44         QString getPath(void) { return m_vpsPath; }
45
46 private slots:
47         void start(Priority priority = InheritPriority) { QThread::start(priority); }
48
49 private:
50         volatile bool m_exception;
51         volatile bool m_success;
52         QString m_vpsPath;
53
54         static QMutex   m_vpsLock;
55         static QFile    *m_vpsExePath;
56         static QFile    *m_vpsDllPath;
57         static QLibrary *m_vpsLib;
58         
59         //Entry point
60         virtual void run(void);
61
62         //Functions
63         static bool detectVapourSynthPath1(QString &path, volatile bool *exception);
64         static bool detectVapourSynthPath2(QString &path, volatile bool *exception);
65         static bool detectVapourSynthPath3(QString &path);
66
67         //Internal functions
68         static bool checkVapourSynth(const QString vspipePath);
69 };