OSDN Git Service

Actually make encoding with x265 work, from y4m sources as well as from STDIN sources...
[x264-launcher/x264-launcher.git] / src / encoder_x265.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2014 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 #include "encoder_x265.h"
23
24 #include "model_options.h"
25 #include "model_status.h"
26 #include "binaries.h"
27 #include "binaries.h"
28
29 #include <QStringList>
30 #include <QDir>
31 #include <QRegExp>
32
33 //x265 version info
34 static const unsigned int X265_VERSION_X264_MINIMUM_VER = 7;
35 static const unsigned int X265_VERSION_X264_MINIMUM_REV = 232;
36
37 // ------------------------------------------------------------
38 // Helper Macros
39 // ------------------------------------------------------------
40
41 #define X264_UPDATE_PROGRESS(X) do \
42 { \
43         bool ok = false; qint64 size_estimate = 0; \
44         unsigned int progress = (X)->cap(1).toUInt(&ok); \
45         setStatus((pass == 2) ? JobStatus_Running_Pass2 : ((pass == 1) ? JobStatus_Running_Pass1 : JobStatus_Running)); \
46         if(ok) \
47         { \
48                 setProgress(progress); \
49                 size_estimate = estimateSize(m_outputFile, progress); \
50         } \
51         setDetails(tr("%1, est. file size %2").arg(line.mid(offset).trimmed(), sizeToString(size_estimate))); \
52 } \
53 while(0)
54
55 #define REMOVE_CUSTOM_ARG(LIST, ITER, FLAG, PARAM) do \
56 { \
57         if(ITER != LIST.end()) \
58         { \
59                 if((*ITER).compare(PARAM, Qt::CaseInsensitive) == 0) \
60                 { \
61                         log(tr("WARNING: Custom parameter \"" PARAM "\" will be ignored in Pipe'd mode!\n")); \
62                         ITER = LIST.erase(ITER); \
63                         if(ITER != LIST.end()) \
64                         { \
65                                 if(!((*ITER).startsWith("--", Qt::CaseInsensitive))) ITER = LIST.erase(ITER); \
66                         } \
67                         FLAG = true; \
68                 } \
69         } \
70 } \
71 while(0)
72
73 static QString MAKE_NAME(const char *baseName, const OptionsModel *options)
74 {
75         const QString arch = (options->encArch() == OptionsModel::EncArch_x64) ? "x64" : "x86";
76         const QString vari = (options->encVariant() == OptionsModel::EncVariant_HiBit ) ? "16-Bit" : "8-Bit";
77         return QString("%1, %2, %3").arg(QString::fromLatin1(baseName), arch, vari);
78 }
79
80 // ------------------------------------------------------------
81 // Constructor & Destructor
82 // ------------------------------------------------------------
83
84 X265Encoder::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)
85 :
86         AbstractEncoder(jobObject, options, sysinfo, preferences, jobStatus, abort, pause, semaphorePause, sourceFile, outputFile),
87         m_encoderName(MAKE_NAME("x265 (H.265/HEVC)", m_options)),
88         m_binaryFile(ENC_BINARY(sysinfo, options))
89 {
90         if(options->encType() != OptionsModel::EncType_X265)
91         {
92                 throw "Invalid encoder type!";
93         }
94 }
95
96 X265Encoder::~X265Encoder(void)
97 {
98         /*Nothing to do here*/
99 }
100
101 const QString &X265Encoder::getName(void)
102 {
103         return m_encoderName;
104 }
105
106 // ------------------------------------------------------------
107 // Check Version
108 // ------------------------------------------------------------
109
110 void X265Encoder::checkVersion_init(QList<QRegExp*> &patterns, QStringList &cmdLine)
111 {
112         cmdLine << "--version";
113         patterns << new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+0\\.(\\d+)\\+(\\d+)-[a-f0-9]+\\b", Qt::CaseInsensitive);
114 }
115
116 void X265Encoder::checkVersion_parseLine(const QString &line, QList<QRegExp*> &patterns, unsigned int &coreVers, unsigned int &revision, bool &modified)
117 {
118         int offset = -1;
119
120         if((offset = patterns[0]->lastIndexIn(line)) >= 0)
121         {
122                 bool ok1 = false, ok2 = false;
123                 unsigned int temp1 = patterns[0]->cap(1).toUInt(&ok1);
124                 unsigned int temp2 = patterns[0]->cap(2).toUInt(&ok2);
125                 if(ok1) coreVers = temp1;
126                 if(ok2) revision = temp2;
127         }
128
129         if(!line.isEmpty())
130         {
131                 log(line);
132         }
133 }
134
135 QString X265Encoder::printVersion(const unsigned int &revision, const bool &modified)
136 {
137         return tr("x265 version: 0.%1+%2").arg(QString::number(revision / REV_MULT), QString::number(revision % REV_MULT));
138 }
139
140 bool X265Encoder::isVersionSupported(const unsigned int &revision, const bool &modified)
141 {
142         const unsigned int ver = (revision / REV_MULT);
143         const unsigned int rev = (revision % REV_MULT);
144
145         if((ver < X265_VERSION_X264_MINIMUM_VER) || (rev < X265_VERSION_X264_MINIMUM_REV))
146         {
147                 log(tr("\nERROR: Your version of x265 is too old! (Minimum required revision is 0.%1+%2)").arg(QString::number(X265_VERSION_X264_MINIMUM_VER), QString::number(X265_VERSION_X264_MINIMUM_REV)));
148                 return false;
149         }
150         
151         return true;
152 }
153
154 // ------------------------------------------------------------
155 // Encoding Functions
156 // ------------------------------------------------------------
157
158 void X265Encoder::buildCommandLine(QStringList &cmdLine, const bool &usePipe, const unsigned int &frames, const QString &indexFile, const int &pass, const QString &passLogFile)
159 {
160         double crf_int = 0.0, crf_frc = 0.0;
161
162         switch(m_options->rcMode())
163         {
164         case OptionsModel::RCMode_CQ:
165                 cmdLine << "--qp" << QString::number(qRound(m_options->quantizer()));
166                 break;
167         case OptionsModel::RCMode_CRF:
168                 crf_frc = modf(m_options->quantizer(), &crf_int);
169                 cmdLine << "--crf" << QString("%1.%2").arg(QString::number(qRound(crf_int)), QString::number(qRound(crf_frc * 10.0)));
170                 break;
171         case OptionsModel::RCMode_2Pass:
172         case OptionsModel::RCMode_ABR:
173                 cmdLine << "--bitrate" << QString::number(m_options->bitrate());
174                 break;
175         default:
176                 throw "Bad rate-control mode !!!";
177                 break;
178         }
179         
180         if((pass == 1) || (pass == 2))
181         {
182                 cmdLine << "--pass" << QString::number(pass);
183                 cmdLine << "--stats" << QDir::toNativeSeparators(passLogFile);
184         }
185
186         cmdLine << "--preset" << m_options->preset().toLower();
187
188         if(m_options->tune().compare("none", Qt::CaseInsensitive))
189         {
190                 cmdLine << "--tune" << m_options->tune().toLower();
191         }
192
193         if(m_options->profile().compare("auto", Qt::CaseInsensitive) != 0)
194         {
195                 if((m_options->encType() == OptionsModel::EncType_X264) && (m_options->encVariant() == OptionsModel::EncVariant_LoBit))
196                 {
197                         cmdLine << "--profile" << m_options->profile().toLower();
198                 }
199         }
200
201         if(!m_options->customEncParams().isEmpty())
202         {
203                 QStringList customArgs = splitParams(m_options->customEncParams(), m_sourceFile, m_outputFile);
204                 if(usePipe)
205                 {
206                         QStringList::iterator i = customArgs.begin();
207                         while(i != customArgs.end())
208                         {
209                                 bool bModified = false;
210                                 REMOVE_CUSTOM_ARG(customArgs, i, bModified, "--fps");
211                                 REMOVE_CUSTOM_ARG(customArgs, i, bModified, "--frames");
212                                 if(!bModified) i++;
213                         }
214                 }
215                 cmdLine.append(customArgs);
216         }
217
218         cmdLine << "--output" << QDir::toNativeSeparators(m_outputFile);
219         
220         if(usePipe)
221         {
222                 if(frames < 1) throw "Frames not set!";
223                 cmdLine << "--frames" << QString::number(frames);
224                 cmdLine << "--y4m" << "-";
225         }
226         else
227         {
228                 cmdLine << QDir::toNativeSeparators(m_sourceFile);
229         }
230 }
231
232 void X265Encoder::runEncodingPass_init(QList<QRegExp*> &patterns)
233 {
234         patterns << new QRegExp("\\[(\\d+)\\.(\\d+)%\\].+frames");   //regExpProgress
235         patterns << new QRegExp("indexing.+\\[(\\d+)\\.(\\d+)%\\]"); //regExpIndexing
236         patterns << new QRegExp("^(\\d+) frames:"); //regExpFrameCnt
237         patterns << new QRegExp("\\[\\s*(\\d+)\\.(\\d+)%\\]\\s+(\\d+)/(\\d+)\\s(\\d+).(\\d+)\\s(\\d+).(\\d+)\\s+(\\d+):(\\d+):(\\d+)\\s+(\\d+):(\\d+):(\\d+)"); //regExpModified
238 }
239
240 void X265Encoder::runEncodingPass_parseLine(const QString &line, QList<QRegExp*> &patterns, const int &pass)
241 {
242         int offset = -1;
243         if((offset = patterns[0]->lastIndexIn(line)) >= 0)
244         {
245                 X264_UPDATE_PROGRESS(patterns[0]);
246         }
247         else if((offset = patterns[1]->lastIndexIn(line)) >= 0)
248         {
249                 bool ok = false;
250                 unsigned int progress = patterns[1]->cap(1).toUInt(&ok);
251                 setStatus(JobStatus_Indexing);
252                 if(ok)
253                 {
254                         setProgress(progress);
255                 }
256                 setDetails(line.mid(offset).trimmed());
257         }
258         else if((offset = patterns[2]->lastIndexIn(line)) >= 0)
259         {
260                 setStatus((pass == 2) ? JobStatus_Running_Pass2 : ((pass == 1) ? JobStatus_Running_Pass1 : JobStatus_Running));
261                 setDetails(line.mid(offset).trimmed());
262         }
263         else if((offset = patterns[3]->lastIndexIn(line)) >= 0)
264         {
265                 X264_UPDATE_PROGRESS(patterns[3]);
266         }
267         else if(!line.isEmpty())
268         {
269                 log(line);
270         }
271 }