OSDN Git Service

Clean up version detection code.
[x264-launcher/x264-launcher.git] / src / encoder_nvenc.cpp
index 4fe1a8e..c2059cf 100644 (file)
@@ -30,6 +30,7 @@
 #include "model_clipInfo.h"
 
 //MUtils
+#include <MUtils/Global.h>
 #include <MUtils/Exception.h>
 
 //Qt
@@ -39,8 +40,8 @@
 #include <QPair>
 
 //x265 version info
-static const unsigned int VERSION_NVENCC_MINIMUM_VER = 206;
-static const unsigned int VERSION_NVENCC_MINIMUM_API = 60;
+static const unsigned int VERSION_NVENCC_MINIMUM_VER = 301;
+static const unsigned int VERSION_NVENCC_MINIMUM_API =  70;
 
 // ------------------------------------------------------------
 // Helper Macros
@@ -142,7 +143,7 @@ public:
        virtual QStringList supportedOutputFormats(void) const
        {
                QStringList extLst;
-               extLst << "mp4";
+               extLst << "mp4" << "264" << "hevc";
                return extLst;
        }
 
@@ -198,6 +199,11 @@ public:
                << QString("%1/toolset/%2/avutil-55.dll"   ).arg(sysinfo->getAppPath(), arch)
                << QString("%1/toolset/%2/swresample-2.dll").arg(sysinfo->getAppPath(), arch);
        }
+
+       virtual QString getHelpCommand(void) const
+       {
+               return "--help";
+       }
 };
 
 static const NVEncEncoderInfo s_nvencEncoderInfo;
@@ -243,27 +249,17 @@ QString NVEncEncoder::getName(void) const
 void NVEncEncoder::checkVersion_init(QList<QRegExp*> &patterns, QStringList &cmdLine)
 {
        cmdLine << "--version";
-       patterns << new QRegExp("\\bNVEncC\\s+\\(\\w+\\)\\s+(\\d)\\.(\\d+)\\s+by\\s+rigaya\\s+\\[NVENC\\s+API\\s+v(\\d+)\\.(\\d+)\\]", Qt::CaseInsensitive);
+       patterns << new QRegExp("\\bNVEncC\\s+\\(x\\d+\\)\\s+(\\d)\\.(\\d+).*\\[NVENC\\s+API\\s+v(\\d+)\\.(\\d+)\\]", Qt::CaseInsensitive);
 }
 
 void NVEncEncoder::checkVersion_parseLine(const QString &line, QList<QRegExp*> &patterns, unsigned int &core, unsigned int &build, bool &modified)
 {
-       int offset = -1;
-
-       if((offset = patterns[0]->lastIndexIn(line)) >= 0)
+       if(patterns[0]->lastIndexIn(line) >= 0)
        {
-               bool ok[4] = { false, false, false, false };
                unsigned int temp[4];
-               temp[0] = patterns[0]->cap(1).toUInt(&ok[0]);
-               temp[1] = patterns[0]->cap(2).toUInt(&ok[1]);
-               temp[2] = patterns[0]->cap(2).toUInt(&ok[2]);
-               temp[3] = patterns[0]->cap(2).toUInt(&ok[3]);
-               if(ok[0] && ok[1])
+               if(MUtils::regexp_parse_uint32(*patterns[0], temp, 4))
                {
                        core = (100 * temp[0]) + temp[1];
-               }
-               if (ok[2] && ok[3])
-               {
                        build = (10 * temp[2]) + temp[3];
                }
        }
@@ -284,7 +280,7 @@ QString NVEncEncoder::printVersion(const unsigned int &revision, const bool &mod
        unsigned int core, build;
        splitRevision(revision, core, build);
 
-       return tr("NVEncC version: %1.%2").arg(QString::number(core / 100), QString::number(core % 100).leftJustified(2, QLatin1Char('0')));
+       return tr("NVEncC version: %1.%2 [API: %3.%4]").arg(QString::number(core / 100), QString::number(core % 100).leftJustified(2, QLatin1Char('0')), QString::number(build / 10), QString::number(build % 10));
 }
 
 bool NVEncEncoder::isVersionSupported(const unsigned int &revision, const bool &modified)
@@ -390,6 +386,7 @@ void NVEncEncoder::runEncodingPass_init(QList<QRegExp*> &patterns)
 {
        patterns << new QRegExp("^(\\d+) frames:");
        patterns << new QRegExp("Selected\\s+codec\\s+is\\s+not\\s+supported", Qt::CaseInsensitive);
+       patterns << new QRegExp("nvEncodeAPI.dll\\s+does\\s+not\\s+exists\\s+in\\s+your\\s+system", Qt::CaseInsensitive);
 }
 
 void NVEncEncoder::runEncodingPass_parseLine(const QString &line, QList<QRegExp*> &patterns, const ClipInfo &clipInfo, const int &pass, double &last_progress, double &size_estimate)
@@ -401,7 +398,11 @@ void NVEncEncoder::runEncodingPass_parseLine(const QString &line, QList<QRegExp*
        }
        else if ((offset = patterns[1]->lastIndexIn(line)) >= 0)
        {
-               log(QString("YOUR HARDWARE DOES *NOT* SUPPORT THE '%1' CODEC !!!\n").arg(s_nvencEncoderInfo.variantToString(m_options->encVariant())));
+               log(QString("ERROR: YOUR HARDWARE DOES *NOT* SUPPORT THE '%1' CODEC !!!\n").arg(s_nvencEncoderInfo.variantToString(m_options->encVariant())));
+       }
+       else if ((offset = patterns[2]->lastIndexIn(line)) >= 0)
+       {
+               log("ERROR: NVIDIA ENCODER API (NVENCODEAPI.DLL) IS *NOT* AVAILABLE !!!\n");
        }
        else if(!line.isEmpty())
        {