From 5521583373768ed8706ec37c8b7133758d40bb99 Mon Sep 17 00:00:00 2001 From: lordmulder Date: Fri, 15 May 2020 23:26:42 +0200 Subject: [PATCH] Bump NVEncC binaries to version 5.01 + added more supported profiles by new NVEncC versions. --- src/encoder_nvencc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/encoder_nvencc.cpp b/src/encoder_nvencc.cpp index da90966..14ae542 100644 --- a/src/encoder_nvencc.cpp +++ b/src/encoder_nvencc.cpp @@ -40,7 +40,7 @@ #include //x265 version info -static const unsigned int VERSION_NVENCC_MINIMUM_VER = 500; +static const unsigned int VERSION_NVENCC_MINIMUM_VER = 501; // ------------------------------------------------------------ // Helper Macros @@ -152,8 +152,8 @@ public: QStringList profiles; switch(variant) { - case 0: profiles << "baseline" << "main" << "high"; break; - case 1: profiles << "main"; break; + case 0: profiles << "baseline" << "main" << "high" << "high444"; break; + case 1: profiles << "main" << "main10" << "main444"; break; default: MUTILS_THROW("Unknown encoder variant!"); } return profiles; -- 2.11.0