2014-02-24 14:57:30 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2017-01-07 18:48:20 +01:00
|
|
|
// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
|
2014-02-24 14:57:30 +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
|
|
|
|
|
|
|
|
#include "encoder_abstract.h"
|
|
|
|
|
|
|
|
class X265Encoder : public AbstractEncoder
|
|
|
|
{
|
|
|
|
public:
|
2014-02-24 19:51:53 +01:00
|
|
|
X265Encoder(JobObject *jobObject, const OptionsModel *options, const SysinfoModel *const sysinfo, const PreferencesModel *const preferences, JobStatus &jobStatus, volatile bool *abort, volatile bool *pause, QSemaphore *semaphorePause, const QString &sourceFile, const QString &outputFile);
|
2014-02-24 14:57:30 +01:00
|
|
|
virtual ~X265Encoder(void);
|
|
|
|
|
2015-08-02 19:16:37 +02:00
|
|
|
virtual QString getName(void) const;
|
2014-02-26 16:08:06 +01:00
|
|
|
|
2014-02-26 17:39:36 +01:00
|
|
|
virtual QString printVersion(const unsigned int &revision, const bool &modified);
|
2014-02-24 14:57:30 +01:00
|
|
|
virtual bool isVersionSupported(const unsigned int &revision, const bool &modified);
|
|
|
|
|
2016-05-08 16:30:31 +02:00
|
|
|
virtual const AbstractEncoderInfo& getEncoderInfo(void) const;
|
|
|
|
static const AbstractEncoderInfo& encoderInfo(void);
|
2014-04-11 15:33:02 +02:00
|
|
|
|
2014-02-24 14:57:30 +01:00
|
|
|
protected:
|
2015-08-02 19:16:37 +02:00
|
|
|
virtual QString getBinaryPath() const { return getEncoderInfo().getBinaryPath(m_sysinfo, m_options->encArch(), m_options->encVariant()); }
|
2016-05-08 18:33:48 +02:00
|
|
|
virtual void buildCommandLine(QStringList &cmdLine, const bool &usePipe, const ClipInfo &clipInfo, const QString &indexFile, const int &pass, const QString &passLogFile);
|
2014-02-24 23:13:42 +01:00
|
|
|
|
2014-02-24 14:57:30 +01:00
|
|
|
virtual void checkVersion_init(QList<QRegExp*> &patterns, QStringList &cmdLine);
|
2017-01-07 21:54:06 +01:00
|
|
|
virtual void checkVersion_parseLine(const QString &line, const QList<QRegExp*> &patterns, unsigned int &core, unsigned int &build, bool &modified);
|
2014-02-24 19:51:53 +01:00
|
|
|
|
|
|
|
virtual void runEncodingPass_init(QList<QRegExp*> &patterns);
|
2017-01-07 21:54:06 +01:00
|
|
|
virtual void runEncodingPass_parseLine(const QString &line, const QList<QRegExp*> &patterns, const ClipInfo &clipInfo, const int &pass, double &last_progress, double &size_estimate);
|
2014-02-24 14:57:30 +01:00
|
|
|
};
|