2012-01-28 18:55:40 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2013-05-11 21:52:07 +02:00
|
|
|
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
2012-01-28 18:55:40 +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
|
|
|
|
// (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
|
|
|
|
|
2013-07-03 21:52:19 +02:00
|
|
|
#include "model_status.h"
|
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
#include <QThread>
|
|
|
|
#include <QUuid>
|
2012-01-29 21:31:09 +01:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QStringList>
|
2012-02-02 02:13:02 +01:00
|
|
|
#include <QSemaphore>
|
2012-01-28 18:55:40 +01:00
|
|
|
|
2012-01-29 19:14:46 +01:00
|
|
|
class OptionsModel;
|
2012-01-29 21:31:09 +01:00
|
|
|
class QProcess;
|
2012-01-29 19:14:46 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
class EncodeThread : public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-08-04 18:44:53 +02:00
|
|
|
EncodeThread(const QString &sourceFileName, const QString &outputFileName, const OptionsModel *options, const QString &binDir, const QString &vpsDir, const bool &x264_x64, const bool &x264_10bit, const bool &avs2yuv_x64, const bool &skipVersionTest, const int &processPriroity, const bool &abortOnTimeout);
|
2012-01-28 18:55:40 +01:00
|
|
|
~EncodeThread(void);
|
|
|
|
|
|
|
|
QUuid getId(void) { return this->m_jobId; };
|
2012-02-04 01:12:21 +01:00
|
|
|
const QString &sourceFileName(void) { return this->m_sourceFileName; }
|
|
|
|
const QString &outputFileName(void) { return this->m_outputFileName; }
|
|
|
|
const OptionsModel *options(void) { return m_options; }
|
|
|
|
|
2012-02-02 02:13:02 +01:00
|
|
|
void pauseJob(void)
|
|
|
|
{
|
|
|
|
m_pause = true;
|
|
|
|
}
|
|
|
|
void resumeJob(void)
|
|
|
|
{
|
|
|
|
m_pause = false;
|
|
|
|
m_semaphorePaused.release();
|
|
|
|
}
|
|
|
|
void abortJob(void)
|
|
|
|
{
|
|
|
|
m_abort = true;
|
|
|
|
m_pause = false;
|
|
|
|
m_semaphorePaused.release();
|
|
|
|
}
|
2012-01-28 18:55:40 +01:00
|
|
|
|
|
|
|
protected:
|
2012-01-29 21:31:09 +01:00
|
|
|
static QMutex m_mutex_startProcess;
|
2012-02-11 16:10:21 +01:00
|
|
|
static const unsigned int m_processTimeoutInterval = 2500;
|
|
|
|
static const unsigned int m_processTimeoutMaxCounter = 120;
|
|
|
|
static const unsigned int m_processTimeoutWarning = 24;
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-30 04:58:42 +01:00
|
|
|
//Constants
|
2012-01-28 18:55:40 +01:00
|
|
|
const QUuid m_jobId;
|
2012-01-29 15:57:23 +01:00
|
|
|
const QString m_sourceFileName;
|
|
|
|
const QString m_outputFileName;
|
2012-01-29 19:14:46 +01:00
|
|
|
const OptionsModel *m_options;
|
2012-01-29 21:31:09 +01:00
|
|
|
const QString m_binDir;
|
2013-08-02 20:44:47 +02:00
|
|
|
const QString m_vpsDir;
|
2012-02-05 02:49:08 +01:00
|
|
|
const bool m_x264_x64;
|
2012-03-25 22:11:07 +02:00
|
|
|
const bool m_x264_10bit;
|
2012-02-05 02:49:08 +01:00
|
|
|
const bool m_avs2yuv_x64;
|
2013-07-07 16:11:47 +02:00
|
|
|
const bool m_skipVersionTest;
|
2013-07-03 21:34:21 +02:00
|
|
|
const int m_processPriority;
|
2013-08-04 18:44:53 +02:00
|
|
|
const bool m_abortOnTimeout;
|
2012-01-29 15:57:23 +01:00
|
|
|
|
2013-08-02 20:44:47 +02:00
|
|
|
//Types
|
|
|
|
enum inputType_t
|
|
|
|
{
|
|
|
|
INPUT_NATIVE = 0,
|
|
|
|
INPUT_AVISYN = 1,
|
|
|
|
INPUT_VAPOUR = 2
|
|
|
|
};
|
|
|
|
|
2012-01-30 04:58:42 +01:00
|
|
|
//Flags
|
2012-01-28 23:24:41 +01:00
|
|
|
volatile bool m_abort;
|
2012-02-02 02:13:02 +01:00
|
|
|
volatile bool m_pause;
|
2012-01-30 04:58:42 +01:00
|
|
|
|
2012-02-02 02:13:02 +01:00
|
|
|
//Synchronization
|
|
|
|
QSemaphore m_semaphorePaused;
|
|
|
|
|
2012-01-31 00:13:32 +01:00
|
|
|
//Job handle
|
|
|
|
void *m_handle_jobObject;
|
|
|
|
|
2012-01-30 04:58:42 +01:00
|
|
|
//Internal status values
|
|
|
|
JobStatus m_status;
|
|
|
|
unsigned int m_progress;
|
|
|
|
|
|
|
|
//Entry point
|
2012-01-28 18:55:40 +01:00
|
|
|
virtual void run(void);
|
2012-02-02 02:13:02 +01:00
|
|
|
virtual void checkedRun(void);
|
2012-01-29 19:14:46 +01:00
|
|
|
|
|
|
|
//Encode functions
|
2012-01-28 19:59:04 +01:00
|
|
|
void encode(void);
|
2013-08-02 20:44:47 +02:00
|
|
|
bool runEncodingPass(bool x264_x64, bool x264_10bit, bool avs2yuv_x64, int inputType, unsigned int frames, const QString &indexFile, int pass = 0, const QString &passLogFile = QString());
|
2012-03-25 22:11:07 +02:00
|
|
|
QStringList buildCommandLine(bool usePipe, bool use10Bit, unsigned int frames, const QString &indexFile, int pass = 0, const QString &passLogFile = QString());
|
|
|
|
unsigned int checkVersionX264(bool use_x64, bool use_10bit, bool &modified);
|
2012-02-05 02:49:08 +01:00
|
|
|
unsigned int checkVersionAvs2yuv(bool x64);
|
2013-08-04 18:44:53 +02:00
|
|
|
bool checkVersionVapoursynth(void);
|
2013-08-02 20:44:47 +02:00
|
|
|
bool checkPropertiesAvisynth(bool x64, unsigned int &frames);
|
2013-08-04 18:44:53 +02:00
|
|
|
bool checkPropertiesVapoursynth(unsigned int &frames);
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-29 19:14:46 +01:00
|
|
|
//Auxiallary Stuff
|
|
|
|
void log(const QString &text) { emit messageLogged(m_jobId, text); }
|
2012-01-30 04:58:42 +01:00
|
|
|
inline void setStatus(JobStatus newStatus);
|
|
|
|
inline void setProgress(unsigned int newProgress);
|
|
|
|
inline void setDetails(const QString &text);
|
2012-01-31 15:15:15 +01:00
|
|
|
bool startProcess(QProcess &process, const QString &program, const QStringList &args, bool mergeChannels = true);
|
2012-02-05 21:52:23 +01:00
|
|
|
QString pathToLocal(const QString &longPath, bool create = false, bool keep = true);
|
2012-02-14 20:50:35 +01:00
|
|
|
QStringList splitParams(const QString ¶ms);
|
2012-02-27 21:39:15 +01:00
|
|
|
qint64 estimateSize(int progress);
|
2012-02-05 21:52:23 +01:00
|
|
|
|
|
|
|
//Static functions
|
2012-01-29 21:31:09 +01:00
|
|
|
static QString commandline2string(const QString &program, const QStringList &arguments);
|
2012-02-27 21:39:15 +01:00
|
|
|
static QString sizeToString(qint64 size);
|
2013-07-03 21:34:21 +02:00
|
|
|
static void setPorcessPriority(void *processId, int priroity);
|
2013-08-02 20:44:47 +02:00
|
|
|
static int getInputType(const QString &fileExt);
|
2012-01-28 18:55:40 +01:00
|
|
|
|
|
|
|
signals:
|
2013-07-03 21:52:19 +02:00
|
|
|
void statusChanged(const QUuid &jobId, JobStatus newStatus);
|
2012-01-28 18:55:40 +01:00
|
|
|
void progressChanged(const QUuid &jobId, unsigned int newProgress);
|
|
|
|
void messageLogged(const QUuid &jobId, const QString &text);
|
2012-01-28 23:24:41 +01:00
|
|
|
void detailsChanged(const QUuid &jobId, const QString &details);
|
2012-02-02 02:13:02 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void start(Priority priority = InheritPriority);
|
2012-01-28 18:55:40 +01:00
|
|
|
};
|
|
|
|
|