OSDN Git Service

Some installer tweaks.
[x264-launcher/x264-launcher.git] / src / encoder_abstract.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2016 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 "tool_abstract.h"
25 #include "model_options.h"
26
27 class QRegExp;
28 template<class T> class QList;
29 class AbstractSource;
30
31 class AbstractEncoderInfo
32 {
33 public:
34         virtual QFlags<OptionsModel::EncVariant> getVariants(void) const = 0;
35         virtual QStringList getProfiles(const OptionsModel::EncVariant &variant) const = 0;
36         virtual QStringList getTunings(void) const = 0;
37         virtual QStringList getPresets(void) const = 0;
38         virtual QStringList supportedOutputFormats(void) const = 0;
39         virtual bool isRCModeSupported(const OptionsModel::RCMode &rcMode) const = 0;
40         virtual bool isInputTypeSupported(const int format) const = 0;
41         virtual QString getBinaryPath(const SysinfoModel *sysinfo, const OptionsModel::EncArch &encArch, const OptionsModel::EncVariant &encVariant) const = 0;
42 };
43
44 class AbstractEncoder : public AbstractTool
45 {
46 public:
47         AbstractEncoder(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);
48         virtual ~AbstractEncoder(void);
49
50         virtual bool runEncodingPass(AbstractSource* pipedSource, const QString outputFile, const unsigned int &frames, const int &pass = 0, const QString &passLogFile = QString());
51         
52         static const AbstractEncoderInfo& getEncoderInfo(void);
53
54 protected:
55         virtual void buildCommandLine(QStringList &cmdLine, const bool &usePipe, const unsigned int &frames, const QString &indexFile, const int &pass, const QString &passLogFile) = 0;
56
57         virtual void runEncodingPass_init(QList<QRegExp*> &patterns) = 0;
58         virtual void runEncodingPass_parseLine(const QString &line, QList<QRegExp*> &patterns, const int &pass, double &last_progress, double &size_estimate) = 0;
59
60         static double estimateSize(const QString &fileName, const double &progress);
61         static QString sizeToString(qint64 size);
62
63         const QString &m_sourceFile;
64         const QString &m_outputFile;
65         const QString m_indexFile;
66 };