1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
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.
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.
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.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "encoder_x265.h"
26 #include "model_options.h"
27 #include "model_status.h"
28 #include "mediainfo.h"
29 #include "model_sysinfo.h"
30 #include "model_clipInfo.h"
33 #include <MUtils/Exception.h>
36 #include <QStringList>
42 static const unsigned int VERSION_X265_MINIMUM_VER
= 19;
43 static const unsigned int VERSION_X265_MINIMUM_REV
= 183;
45 // ------------------------------------------------------------
47 // ------------------------------------------------------------
49 #define X265_UPDATE_PROGRESS(X) do \
51 bool ok[2] = { false, false }; \
52 unsigned int progressInt = (X)->cap(1).toUInt(&ok[0]); \
53 unsigned int progressFrc = (X)->cap(2).toUInt(&ok[1]); \
54 setStatus((pass == 2) ? JobStatus_Running_Pass2 : ((pass == 1) ? JobStatus_Running_Pass1 : JobStatus_Running)); \
57 const double progress = (double(progressInt) / 100.0) + (double(progressFrc) / 1000.0); \
58 if(!qFuzzyCompare(progress, last_progress)) \
60 setProgress(floor(progress * 100.0)); \
61 size_estimate = qFuzzyIsNull(size_estimate) ? estimateSize(m_outputFile, progress) : ((0.667 * size_estimate) + (0.333 * estimateSize(m_outputFile, progress))); \
62 last_progress = progress; \
65 setDetails(tr("%1, est. file size %2").arg(line.mid(offset).trimmed(), sizeToString(qRound64(size_estimate)))); \
69 #define REMOVE_CUSTOM_ARG(LIST, ITER, FLAG, PARAM) do \
71 if(ITER != LIST.end()) \
73 if((*ITER).compare(PARAM, Qt::CaseInsensitive) == 0) \
75 log(tr("WARNING: Custom parameter \"" PARAM "\" will be ignored in Pipe'd mode!\n")); \
76 ITER = LIST.erase(ITER); \
77 if(ITER != LIST.end()) \
79 if(!((*ITER).startsWith("--", Qt::CaseInsensitive))) ITER = LIST.erase(ITER); \
87 // ------------------------------------------------------------
89 // ------------------------------------------------------------
91 class X265EncoderInfo
: public AbstractEncoderInfo
94 virtual QString
getName(void) const
96 return "x265 (HEVC/H.265)";
99 virtual QList
<ArchId
> getArchitectures(void) const
101 return QList
<ArchId
>()
102 << qMakePair(QString("32-Bit (x86)"), ARCH_TYPE_X86
)
103 << qMakePair(QString("64-Bit (x64)"), ARCH_TYPE_X64
);
106 virtual QStringList
getVariants(void) const
108 return QStringList() << "8-Bit" << "10-Bit" << "12-Bit";
110 virtual QList
<RCMode
> getRCModes(void) const
112 return QList
<RCMode
>()
113 << qMakePair(QString("CRF"), RC_TYPE_QUANTIZER
)
114 << qMakePair(QString("CQ"), RC_TYPE_QUANTIZER
)
115 << qMakePair(QString("2-Pass"), RC_TYPE_MULTIPASS
)
116 << qMakePair(QString("ABR"), RC_TYPE_RATE_KBPS
);
119 virtual QStringList
getTunings(void) const
121 return QStringList() << "Grain" << "PSNR" << "SSIM" << "FastDecode" << "ZeroLatency";
124 virtual QStringList
getPresets(void) const
127 << "ultrafast" << "superfast" << "veryfast" << "faster" << "fast"
128 << "medium" << "slow" << "slower" << "veryslow" << "placebo";
131 virtual QStringList
getProfiles(const quint32
&variant
) const
133 QStringList profiles
;
136 case 0: profiles
<< "main" << "main-intra" << "mainstillpicture" << "main444-8" << "main444-intra" << "main444-stillpicture"; break;
137 case 1: profiles
<< "main10" << "main10-intra" << "main422-10" << "main422-10-intra" << "main444-10" << "main444-10-intra"; break;
138 case 2: profiles
<< "main12" << "main12-intra" << "main422-12" << "main422-12-intra" << "main444-12" << "main444-12-intra"; break;
139 default: MUTILS_THROW("Unknown encoder variant!");
144 virtual QStringList
supportedOutputFormats(void) const
146 return QStringList() << "hevc";
149 virtual bool isInputTypeSupported(const int format
) const
153 case MediaInfo::FILETYPE_YUV4MPEG2
:
160 virtual QString
getBinaryPath(const SysinfoModel
*sysinfo
, const quint32
&encArch
, const quint32
&encVariant
) const
162 QString arch
, variant
;
165 case 0: arch
= "x86"; break;
166 case 1: arch
= "x64"; break;
167 default: MUTILS_THROW("Unknown encoder arch!");
171 case 0: variant
= "8bit"; break;
172 case 1: variant
= "10bit"; break;
173 case 2: variant
= "12bit"; break;
174 default: MUTILS_THROW("Unknown encoder arch!");
176 return QString("%1/toolset/%2/x265_%3_%2.exe").arg(sysinfo
->getAppPath(), arch
, variant
);
179 virtual QString
getHelpCommand(void) const
185 static const X265EncoderInfo s_x265EncoderInfo
;
187 const AbstractEncoderInfo
& X265Encoder::encoderInfo(void)
189 return s_x265EncoderInfo
;
192 const AbstractEncoderInfo
&X265Encoder::getEncoderInfo(void) const
194 return encoderInfo();
197 // ------------------------------------------------------------
198 // Constructor & Destructor
199 // ------------------------------------------------------------
201 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
)
203 AbstractEncoder(jobObject
, options
, sysinfo
, preferences
, jobStatus
, abort
, pause
, semaphorePause
, sourceFile
, outputFile
)
205 if(options
->encType() != OptionsModel::EncType_X265
)
207 MUTILS_THROW("Invalid encoder type!");
211 X265Encoder::~X265Encoder(void)
213 /*Nothing to do here*/
216 QString
X265Encoder::getName(void) const
218 return s_x265EncoderInfo
.getFullName(m_options
->encArch(), m_options
->encVariant());
221 // ------------------------------------------------------------
223 // ------------------------------------------------------------
225 void X265Encoder::checkVersion_init(QList
<QRegExp
*> &patterns
, QStringList
&cmdLine
)
227 cmdLine
<< "--version";
228 patterns
<< new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\+(\\d+)\\b", Qt::CaseInsensitive
);
229 patterns
<< new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\b", Qt::CaseInsensitive
);
232 void X265Encoder::checkVersion_parseLine(const QString
&line
, QList
<QRegExp
*> &patterns
, unsigned int &core
, unsigned int &build
, bool &modified
)
236 if((offset
= patterns
[0]->lastIndexIn(line
)) >= 0)
238 bool ok
[3] = { false, false, false };
239 unsigned int temp
[3];
240 temp
[0] = patterns
[0]->cap(1).toUInt(&ok
[0]);
241 temp
[1] = patterns
[0]->cap(2).toUInt(&ok
[1]);
242 temp
[2] = patterns
[0]->cap(3).toUInt(&ok
[2]);
245 core
= (10 * temp
[0]) + temp
[1];
247 if(ok
[2]) build
= temp
[2];
249 else if((offset
= patterns
[1]->lastIndexIn(line
)) >= 0)
251 bool ok
[2] = { false, false };
252 unsigned int temp
[2];
253 temp
[0] = patterns
[1]->cap(1).toUInt(&ok
[0]);
254 temp
[1] = patterns
[1]->cap(2).toUInt(&ok
[1]);
257 core
= (10 * temp
[0]) + temp
[1];
268 QString
X265Encoder::printVersion(const unsigned int &revision
, const bool &modified
)
270 unsigned int core
, build
;
271 splitRevision(revision
, core
, build
);
273 return tr("x265 version: %1.%2+%3").arg(QString::number(core
/ 10), QString::number(core
% 10), QString::number(build
));
276 bool X265Encoder::isVersionSupported(const unsigned int &revision
, const bool &modified
)
278 unsigned int core
, build
;
279 splitRevision(revision
, core
, build
);
281 if((core
< VERSION_X265_MINIMUM_VER
) || ((core
== VERSION_X265_MINIMUM_VER
) && (build
< VERSION_X265_MINIMUM_REV
)))
283 log(tr("\nERROR: Your version of x265 is too old! (Minimum required revision is 0.%1+%2)").arg(QString::number(VERSION_X265_MINIMUM_VER
), QString::number(VERSION_X265_MINIMUM_REV
)));
286 else if(core
> VERSION_X265_MINIMUM_VER
)
288 log(tr("\nWARNING: Your version of x265 is newer than the latest tested version, take care!"));
289 log(tr("This application works best with x265 version %1.%2. Newer versions may work or not.").arg(QString::number(VERSION_X265_MINIMUM_VER
/ 10), QString::number(VERSION_X265_MINIMUM_VER
% 10)));
295 // ------------------------------------------------------------
296 // Encoding Functions
297 // ------------------------------------------------------------
299 void X265Encoder::buildCommandLine(QStringList
&cmdLine
, const bool &usePipe
, const ClipInfo
&clipInfo
, const QString
&indexFile
, const int &pass
, const QString
&passLogFile
)
301 double crf_int
= 0.0, crf_frc
= 0.0;
303 switch(m_options
->rcMode())
306 cmdLine
<< "--qp" << QString::number(qRound(m_options
->quantizer()));
309 crf_frc
= modf(m_options
->quantizer(), &crf_int
);
310 cmdLine
<< "--crf" << QString("%1.%2").arg(QString::number(qRound(crf_int
)), QString::number(qRound(crf_frc
* 10.0)));
314 cmdLine
<< "--bitrate" << QString::number(m_options
->bitrate());
317 MUTILS_THROW("Bad rate-control mode !!!");
321 if((pass
== 1) || (pass
== 2))
323 cmdLine
<< "--pass" << QString::number(pass
);
324 cmdLine
<< "--stats" << QDir::toNativeSeparators(passLogFile
);
327 const QString preset
= m_options
->preset().simplified().toLower();
328 if(!preset
.isEmpty())
330 if(preset
.compare(QString::fromLatin1(OptionsModel::SETTING_UNSPECIFIED
), Qt::CaseInsensitive
) != 0)
332 cmdLine
<< "--preset" << preset
;
336 const QString tune
= m_options
->tune().simplified().toLower();
339 if(tune
.compare(QString::fromLatin1(OptionsModel::SETTING_UNSPECIFIED
), Qt::CaseInsensitive
) != 0)
341 cmdLine
<< "--tune" << tune
;
345 const QString profile
= m_options
->profile().simplified().toLower();
346 if(!profile
.isEmpty())
348 if(profile
.compare(QString::fromLatin1(OptionsModel::PROFILE_UNRESTRICTED
), Qt::CaseInsensitive
) != 0)
350 cmdLine
<< "--profile" << profile
;
354 if(!m_options
->customEncParams().isEmpty())
356 QStringList customArgs
= splitParams(m_options
->customEncParams(), m_sourceFile
, m_outputFile
);
359 QStringList::iterator i
= customArgs
.begin();
360 while(i
!= customArgs
.end())
362 bool bModified
= false;
363 REMOVE_CUSTOM_ARG(customArgs
, i
, bModified
, "--fps");
364 REMOVE_CUSTOM_ARG(customArgs
, i
, bModified
, "--frames");
368 cmdLine
.append(customArgs
);
371 cmdLine
<< "--output" << QDir::toNativeSeparators(m_outputFile
);
375 if (clipInfo
.getFrameCount() < 1)
377 MUTILS_THROW("Frames not set!");
379 cmdLine
<< "--frames" << QString::number(clipInfo
.getFrameCount());
380 cmdLine
<< "--y4m" << "-";
384 cmdLine
<< QDir::toNativeSeparators(m_sourceFile
);
388 void X265Encoder::runEncodingPass_init(QList
<QRegExp
*> &patterns
)
390 patterns
<< new QRegExp("\\[(\\d+)\\.(\\d+)%\\].+frames"); //regExpProgress
391 patterns
<< new QRegExp("indexing.+\\[(\\d+)\\.(\\d+)%\\]"); //regExpIndexing
392 patterns
<< new QRegExp("^(\\d+) frames:"); //regExpFrameCnt
393 patterns
<< new QRegExp("\\[\\s*(\\d+)\\.(\\d+)%\\]\\s+(\\d+)/(\\d+)\\s(\\d+).(\\d+)\\s(\\d+).(\\d+)\\s+(\\d+):(\\d+):(\\d+)\\s+(\\d+):(\\d+):(\\d+)"); //regExpModified
396 void X265Encoder::runEncodingPass_parseLine(const QString
&line
, QList
<QRegExp
*> &patterns
, const ClipInfo
&clipInfo
, const int &pass
, double &last_progress
, double &size_estimate
)
399 if((offset
= patterns
[0]->lastIndexIn(line
)) >= 0)
401 X265_UPDATE_PROGRESS(patterns
[0]);
403 else if((offset
= patterns
[1]->lastIndexIn(line
)) >= 0)
406 unsigned int progress
= patterns
[1]->cap(1).toUInt(&ok
);
407 setStatus(JobStatus_Indexing
);
410 setProgress(progress
);
412 setDetails(line
.mid(offset
).trimmed());
414 else if((offset
= patterns
[2]->lastIndexIn(line
)) >= 0)
416 setStatus((pass
== 2) ? JobStatus_Running_Pass2
: ((pass
== 1) ? JobStatus_Running_Pass1
: JobStatus_Running
));
417 setDetails(line
.mid(offset
).trimmed());
419 else if((offset
= patterns
[3]->lastIndexIn(line
)) >= 0)
421 X265_UPDATE_PROGRESS(patterns
[3]);
423 else if(!line
.isEmpty())