444 lines
12 KiB
C++
444 lines
12 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Simple x264 Launcher
|
|
// Copyright (C) 2004-2019 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
//
|
|
// 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
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "encoder_x264.h"
|
|
|
|
//Internal
|
|
#include "global.h"
|
|
#include "model_options.h"
|
|
#include "model_status.h"
|
|
#include "mediainfo.h"
|
|
#include "model_sysinfo.h"
|
|
#include "model_clipInfo.h"
|
|
|
|
//MUtils
|
|
#include <MUtils/Global.h>
|
|
#include <MUtils/Exception.h>
|
|
|
|
//Qt
|
|
#include <QStringList>
|
|
#include <QDir>
|
|
#include <QRegExp>
|
|
#include <QPair>
|
|
|
|
//x264 version info
|
|
static const unsigned int VERSION_X264_MINIMUM_REV = 2982;
|
|
static const unsigned int VERSION_X264_CURRENT_API = 158;
|
|
|
|
// ------------------------------------------------------------
|
|
// Helper Macros
|
|
// ------------------------------------------------------------
|
|
|
|
#define REMOVE_CUSTOM_ARG(LIST, ITER, FLAG, PARAM) do \
|
|
{ \
|
|
if(ITER != LIST.end()) \
|
|
{ \
|
|
if((*ITER).compare(PARAM, Qt::CaseInsensitive) == 0) \
|
|
{ \
|
|
log(tr("WARNING: Custom parameter \"" PARAM "\" will be ignored in Pipe'd mode!\n")); \
|
|
ITER = LIST.erase(ITER); \
|
|
if(ITER != LIST.end()) \
|
|
{ \
|
|
if(!((*ITER).startsWith("--", Qt::CaseInsensitive))) ITER = LIST.erase(ITER); \
|
|
} \
|
|
FLAG = true; \
|
|
} \
|
|
} \
|
|
} \
|
|
while(0)
|
|
|
|
#define X264_UPDATE_PROGRESS(X) do \
|
|
{ \
|
|
bool ok[2] = { false, false }; \
|
|
unsigned int progressInt = (X)->cap(1).toUInt(&ok[0]); \
|
|
unsigned int progressFrc = (X)->cap(2).toUInt(&ok[1]); \
|
|
setStatus((pass == 2) ? JobStatus_Running_Pass2 : ((pass == 1) ? JobStatus_Running_Pass1 : JobStatus_Running)); \
|
|
if(ok[0] && ok[1]) \
|
|
{ \
|
|
const double progress = (double(progressInt) / 100.0) + (double(progressFrc) / 1000.0); \
|
|
if(!qFuzzyCompare(progress, last_progress)) \
|
|
{ \
|
|
setProgress(floor(progress * 100.0)); \
|
|
size_estimate = qFuzzyIsNull(size_estimate) ? estimateSize(m_outputFile, progress) : ((0.667 * size_estimate) + (0.333 * estimateSize(m_outputFile, progress))); \
|
|
last_progress = progress; \
|
|
} \
|
|
} \
|
|
setDetails(tr("%1, est. file size %2").arg(line.mid(offset).trimmed(), sizeToString(qRound64(size_estimate)))); \
|
|
} \
|
|
while(0)
|
|
|
|
// ------------------------------------------------------------
|
|
// Encoder Info
|
|
// ------------------------------------------------------------
|
|
|
|
class X264EncoderInfo : public AbstractEncoderInfo
|
|
{
|
|
public:
|
|
virtual QString getName(void) const
|
|
{
|
|
return "x264 (AVC/H.264)";
|
|
}
|
|
|
|
virtual QList<ArchId> getArchitectures(void) const
|
|
{
|
|
return QList<ArchId>()
|
|
<< qMakePair(QString("32-Bit (x86)"), ARCH_TYPE_X86)
|
|
<< qMakePair(QString("64-Bit (x64)"), ARCH_TYPE_X64);
|
|
}
|
|
|
|
virtual QStringList getVariants(void) const
|
|
{
|
|
return QStringList() << "8-Bit" << "10-Bit";
|
|
}
|
|
|
|
virtual QList<RCMode> getRCModes(void) const
|
|
{
|
|
return QList<RCMode>()
|
|
<< qMakePair(QString("CRF"), RC_TYPE_QUANTIZER)
|
|
<< qMakePair(QString("CQ"), RC_TYPE_QUANTIZER)
|
|
<< qMakePair(QString("2-Pass"), RC_TYPE_MULTIPASS)
|
|
<< qMakePair(QString("ABR"), RC_TYPE_RATE_KBPS);
|
|
}
|
|
|
|
virtual QStringList getTunings(void) const
|
|
{
|
|
return QStringList()
|
|
<< "Film" << "Animation" << "Grain"
|
|
<< "StillImage" << "PSNR" << "SSIM"
|
|
<< "FastDecode" << "ZeroLatency" << "Touhou";
|
|
}
|
|
|
|
virtual QStringList getPresets(void) const
|
|
{
|
|
return QStringList()
|
|
<< "ultrafast" << "superfast" << "veryfast" << "faster" << "fast"
|
|
<< "medium" << "slow" << "slower" << "veryslow" << "placebo";
|
|
}
|
|
|
|
virtual QStringList getProfiles(const quint32 &variant) const
|
|
{
|
|
QStringList profiles;
|
|
switch(variant)
|
|
{
|
|
case 0: profiles << "Baseline" << "Main" << "High"; break;
|
|
case 1: profiles << "High10" << "High422" << "High444"; break;
|
|
default: MUTILS_THROW("Unknown encoder variant!");
|
|
}
|
|
return profiles;
|
|
}
|
|
|
|
virtual QStringList supportedOutputFormats(void) const
|
|
{
|
|
return QStringList() << "264" << "mkv" << "mp4";
|
|
}
|
|
|
|
virtual bool isInputTypeSupported(const int format) const
|
|
{
|
|
switch(format)
|
|
{
|
|
case MediaInfo::FILETYPE_AVISYNTH:
|
|
case MediaInfo::FILETYPE_YUV4MPEG2:
|
|
case MediaInfo::FILETYPE_UNKNOWN:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
virtual QString getBinaryPath(const SysinfoModel *sysinfo, const quint32 &encArch, const quint32 &encVariant) const
|
|
{
|
|
QString arch, variant;
|
|
switch(encArch)
|
|
{
|
|
case 0: arch = "x86"; break;
|
|
case 1: arch = "x64"; break;
|
|
default: MUTILS_THROW("Unknown encoder arch!");
|
|
}
|
|
if ((encVariant < 0) || (encVariant > 1))
|
|
{
|
|
MUTILS_THROW("Unknown encoder variant!");
|
|
}
|
|
return QString("%1/toolset/%2/x264_%2.exe").arg(sysinfo->getAppPath(), arch);
|
|
}
|
|
|
|
virtual QString getHelpCommand(void) const
|
|
{
|
|
return "--fullhelp";
|
|
}
|
|
};
|
|
|
|
static const X264EncoderInfo s_x264EncoderInfo;
|
|
|
|
const AbstractEncoderInfo& X264Encoder::encoderInfo(void)
|
|
{
|
|
return s_x264EncoderInfo;
|
|
}
|
|
|
|
const AbstractEncoderInfo &X264Encoder::getEncoderInfo(void) const
|
|
{
|
|
return encoderInfo();
|
|
}
|
|
|
|
// ------------------------------------------------------------
|
|
// Constructor & Destructor
|
|
// ------------------------------------------------------------
|
|
|
|
X264Encoder::X264Encoder(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)
|
|
:
|
|
AbstractEncoder(jobObject, options, sysinfo, preferences, jobStatus, abort, pause, semaphorePause, sourceFile, outputFile)
|
|
{
|
|
if(options->encType() != OptionsModel::EncType_X264)
|
|
{
|
|
MUTILS_THROW("Invalid encoder type!");
|
|
}
|
|
}
|
|
|
|
X264Encoder::~X264Encoder(void)
|
|
{
|
|
/*Nothing to do here*/
|
|
}
|
|
|
|
QString X264Encoder::getName(void) const
|
|
{
|
|
return s_x264EncoderInfo.getFullName(m_options->encArch(), m_options->encVariant());
|
|
}
|
|
|
|
// ------------------------------------------------------------
|
|
// Check Version
|
|
// ------------------------------------------------------------
|
|
|
|
void X264Encoder::checkVersion_init(QList<QRegExp*> &patterns, QStringList &cmdLine)
|
|
{
|
|
cmdLine << "--version";
|
|
patterns << new QRegExp("\\bx264\\s+(\\d)\\.(\\d+)\\.(\\d+)\\s+([a-f0-9]{7})", Qt::CaseInsensitive);
|
|
patterns << new QRegExp("\\bx264\\s+(\\d)\\.(\\d+)\\.(\\d+)", Qt::CaseInsensitive);
|
|
}
|
|
|
|
void X264Encoder::checkVersion_parseLine(const QString &line, const QList<QRegExp*> &patterns, unsigned int &core, unsigned int &build, bool &modified)
|
|
{
|
|
if(patterns[0]->lastIndexIn(line) >= 0)
|
|
{
|
|
unsigned int temp[3];
|
|
if(MUtils::regexp_parse_uint32(*patterns[0], temp, 3))
|
|
{
|
|
core = temp[1];
|
|
build = temp[2];
|
|
}
|
|
}
|
|
else if(patterns[1]->lastIndexIn(line) >= 0)
|
|
{
|
|
unsigned int temp[3];
|
|
if (MUtils::regexp_parse_uint32(*patterns[1], temp, 3))
|
|
{
|
|
core = temp[1];
|
|
build = temp[2];
|
|
}
|
|
modified = true;
|
|
}
|
|
|
|
if(!line.isEmpty())
|
|
{
|
|
log(line);
|
|
}
|
|
}
|
|
|
|
QString X264Encoder::printVersion(const unsigned int &revision, const bool &modified)
|
|
{
|
|
unsigned int core, build;
|
|
splitRevision(revision, core, build);
|
|
|
|
QString versionStr = tr("x264 revision: %1 (core #%2)").arg(QString::number(build), QString::number(core));
|
|
if(modified)
|
|
{
|
|
versionStr.append(tr(" - with custom patches!"));
|
|
}
|
|
|
|
return versionStr;
|
|
}
|
|
|
|
bool X264Encoder::isVersionSupported(const unsigned int &revision, const bool &modified)
|
|
{
|
|
unsigned int core, build;
|
|
splitRevision(revision, core, build);
|
|
|
|
if(build < VERSION_X264_MINIMUM_REV)
|
|
{
|
|
log(tr("\nERROR: Your revision of x264 is too old! Minimum required revision is %1.").arg(QString::number(VERSION_X264_MINIMUM_REV)));
|
|
return false;
|
|
}
|
|
|
|
if(core != VERSION_X264_CURRENT_API)
|
|
{
|
|
log(tr("\nWARNING: Your x264 binary uses an untested core (API) version, take care!"));
|
|
log(tr("This application works best with x264 core (API) version %1. Newer versions may work or not.").arg(QString::number(VERSION_X264_CURRENT_API)));
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// ------------------------------------------------------------
|
|
// Encoding Functions
|
|
// ------------------------------------------------------------
|
|
|
|
void X264Encoder::buildCommandLine(QStringList &cmdLine, const bool &usePipe, const ClipInfo &clipInfo, const QString &indexFile, const int &pass, const QString &passLogFile)
|
|
{
|
|
double crf_int = 0.0, crf_frc = 0.0;
|
|
|
|
cmdLine << "--output-depth";
|
|
switch (m_options->encVariant())
|
|
{
|
|
case 0:
|
|
cmdLine << QString::number(8);
|
|
break;
|
|
case 1:
|
|
cmdLine << QString::number(10);
|
|
break;
|
|
default:
|
|
MUTILS_THROW("Unknown encoder variant!");
|
|
}
|
|
|
|
switch(m_options->rcMode())
|
|
{
|
|
case 0:
|
|
crf_frc = modf(m_options->quantizer(), &crf_int);
|
|
cmdLine << "--crf" << QString("%1.%2").arg(QString::number(qRound(crf_int)), QString::number(qRound(crf_frc * 10.0)));
|
|
break;
|
|
case 1:
|
|
cmdLine << "--qp" << QString::number(qRound(m_options->quantizer()));
|
|
break;
|
|
case 2:
|
|
case 3:
|
|
cmdLine << "--bitrate" << QString::number(m_options->bitrate());
|
|
break;
|
|
default:
|
|
MUTILS_THROW("Bad rate-control mode !!!");
|
|
}
|
|
|
|
if((pass == 1) || (pass == 2))
|
|
{
|
|
cmdLine << "--pass" << QString::number(pass);
|
|
cmdLine << "--stats" << QDir::toNativeSeparators(passLogFile);
|
|
}
|
|
|
|
const QString preset = m_options->preset().simplified().toLower();
|
|
if(!preset.isEmpty())
|
|
{
|
|
if(preset.compare(QString::fromLatin1(OptionsModel::SETTING_UNSPECIFIED), Qt::CaseInsensitive) != 0)
|
|
{
|
|
cmdLine << "--preset" << preset;
|
|
}
|
|
}
|
|
|
|
const QString tune = m_options->tune().simplified().toLower();
|
|
if(!tune.isEmpty())
|
|
{
|
|
if(tune.compare(QString::fromLatin1(OptionsModel::SETTING_UNSPECIFIED), Qt::CaseInsensitive) != 0)
|
|
{
|
|
cmdLine << "--tune" << tune;
|
|
}
|
|
}
|
|
|
|
const QString profile = m_options->profile().simplified().toLower();
|
|
if(!profile.isEmpty())
|
|
{
|
|
if(profile.compare(QString::fromLatin1(OptionsModel::PROFILE_UNRESTRICTED), Qt::CaseInsensitive) != 0)
|
|
{
|
|
cmdLine << "--profile" << profile;
|
|
}
|
|
}
|
|
|
|
if(!m_options->customEncParams().isEmpty())
|
|
{
|
|
QStringList customArgs = splitParams(m_options->customEncParams(), m_sourceFile, m_outputFile);
|
|
if(usePipe)
|
|
{
|
|
QStringList::iterator i = customArgs.begin();
|
|
while(i != customArgs.end())
|
|
{
|
|
bool bModified = false;
|
|
REMOVE_CUSTOM_ARG(customArgs, i, bModified, "--fps");
|
|
REMOVE_CUSTOM_ARG(customArgs, i, bModified, "--frames");
|
|
if(!bModified) i++;
|
|
}
|
|
}
|
|
cmdLine.append(customArgs);
|
|
}
|
|
|
|
cmdLine << "--output" << QDir::toNativeSeparators(m_outputFile);
|
|
|
|
if(usePipe)
|
|
{
|
|
if (clipInfo.getFrameCount() < 1)
|
|
{
|
|
MUTILS_THROW("Frames not set!");
|
|
}
|
|
cmdLine << "--frames" << QString::number(clipInfo.getFrameCount());
|
|
cmdLine << "--demuxer" << "y4m";
|
|
cmdLine << "--stdin" << "y4m" << "-";
|
|
}
|
|
else
|
|
{
|
|
cmdLine << "--index" << QDir::toNativeSeparators(indexFile);
|
|
cmdLine << QDir::toNativeSeparators(m_sourceFile);
|
|
}
|
|
}
|
|
|
|
void X264Encoder::runEncodingPass_init(QList<QRegExp*> &patterns)
|
|
{
|
|
patterns << new QRegExp("\\[(\\d+)\\.(\\d+)%\\].+frames");
|
|
patterns << new QRegExp("indexing.+\\[(\\d+)\\.(\\d+)%\\]");
|
|
patterns << new QRegExp("^(\\d+) frames:");
|
|
patterns << new QRegExp("\\[\\s*(\\d+)\\.(\\d+)%\\]\\s+(\\d+)/(\\d+)\\s(\\d+).(\\d+)\\s(\\d+).(\\d+)\\s+(\\d+):(\\d+):(\\d+)\\s+(\\d+):(\\d+):(\\d+)"); //regExpModified
|
|
}
|
|
|
|
void X264Encoder::runEncodingPass_parseLine(const QString &line, const QList<QRegExp*> &patterns, const ClipInfo &clipInfo, const int &pass, double &last_progress, double &size_estimate)
|
|
{
|
|
int offset = -1;
|
|
if((offset = patterns[0]->lastIndexIn(line)) >= 0)
|
|
{
|
|
X264_UPDATE_PROGRESS(patterns[0]);
|
|
}
|
|
else if((offset = patterns[1]->lastIndexIn(line)) >= 0)
|
|
{
|
|
bool ok = false;
|
|
unsigned int progress = patterns[1]->cap(1).toUInt(&ok);
|
|
setStatus(JobStatus_Indexing);
|
|
if(ok)
|
|
{
|
|
setProgress(progress);
|
|
}
|
|
setDetails(line.mid(offset).trimmed());
|
|
}
|
|
else if((offset = patterns[2]->lastIndexIn(line)) >= 0)
|
|
{
|
|
setStatus((pass == 2) ? JobStatus_Running_Pass2 : ((pass == 1) ? JobStatus_Running_Pass1 : JobStatus_Running));
|
|
setDetails(line.mid(offset).trimmed());
|
|
}
|
|
else if((offset = patterns[3]->lastIndexIn(line)) >= 0)
|
|
{
|
|
X264_UPDATE_PROGRESS(patterns[3]);
|
|
}
|
|
else if(!line.isEmpty())
|
|
{
|
|
log(line);
|
|
}
|
|
}
|