Fixed detection of x265 versions with _Au
suffix.
This commit is contained in:
parent
e38e35920f
commit
bfab4bb03e
@ -224,6 +224,7 @@ void X265Encoder::checkVersion_init(QList<QRegExp*> &patterns, QStringList &cmdL
|
|||||||
{
|
{
|
||||||
cmdLine << "--version";
|
cmdLine << "--version";
|
||||||
patterns << new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\+(\\d+)\\b", Qt::CaseInsensitive);
|
patterns << new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\+(\\d+)\\b", Qt::CaseInsensitive);
|
||||||
|
patterns << new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\_Au\\+(\\d+)\\b", Qt::CaseInsensitive);
|
||||||
patterns << new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\b", Qt::CaseInsensitive);
|
patterns << new QRegExp("\\bHEVC\\s+encoder\\s+version\\s+(\\d)\\.(\\d+)\\b", Qt::CaseInsensitive);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -231,24 +232,32 @@ void X265Encoder::checkVersion_parseLine(const QString &line, const QList<QRegEx
|
|||||||
{
|
{
|
||||||
int offset = -1;
|
int offset = -1;
|
||||||
|
|
||||||
if((offset = patterns[0]->lastIndexIn(line)) >= 0)
|
for (size_t q = 0; q < 2; ++q)
|
||||||
|
{
|
||||||
|
if ((offset = patterns[q]->lastIndexIn(line)) >= 0)
|
||||||
{
|
{
|
||||||
unsigned int temp[3];
|
unsigned int temp[3];
|
||||||
if(MUtils::regexp_parse_uint32(*patterns[0], temp, 3))
|
if (MUtils::regexp_parse_uint32(*patterns[q], temp, 3))
|
||||||
{
|
{
|
||||||
core = (10 * temp[0]) + temp[1];
|
core = (10 * temp[0]) + temp[1];
|
||||||
build = temp[2];
|
build = temp[2];
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if((offset = patterns[1]->lastIndexIn(line)) >= 0)
|
}
|
||||||
|
|
||||||
|
if ((!core) || (core == UINT_MAX))
|
||||||
|
{
|
||||||
|
if ((offset = patterns[2]->lastIndexIn(line)) >= 0)
|
||||||
{
|
{
|
||||||
unsigned int temp[2];
|
unsigned int temp[2];
|
||||||
if (MUtils::regexp_parse_uint32(*patterns[0], temp, 2))
|
if (MUtils::regexp_parse_uint32(*patterns[2], temp, 2))
|
||||||
{
|
{
|
||||||
core = (10 * temp[0]) + temp[1];
|
core = (10 * temp[0]) + temp[1];
|
||||||
}
|
}
|
||||||
build = 0;
|
build = 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(!line.isEmpty())
|
if(!line.isEmpty())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user