Compare commits

...

2 Commits

Author SHA1 Message Date
8721ba5d30 Updated NVEncC version. 2023-06-18 14:13:06 +02:00
20f229db45 Updated x264 and x265 versions. 2023-06-18 14:01:30 +02:00
5 changed files with 12 additions and 6 deletions

View File

@ -2,6 +2,12 @@
Simple x264/x265 Launcher version history
-----------------------------------------
Version 3.03 [2023-06-18]
* Updated x264 to revision 3106 (API v164)
* Updated x265 to version 3.5+100
* Updated NVEncC to version 7.28
* Updated build environment to Visual Studio 2022 with Update-6
Version 3.02 [2022-06-16]
* Updated x264 to revision 3094 (API v164)
* Updated x265 to version 3.5+37

View File

@ -40,7 +40,7 @@
#include <QPair>
//x265 version info
static const unsigned int VERSION_NVENCC_MINIMUM_VER = 605;
static const unsigned int VERSION_NVENCC_MINIMUM_VER = 728;
// ------------------------------------------------------------
// Helper Macros

View File

@ -40,7 +40,7 @@
#include <QPair>
//x264 version info
static const unsigned int VERSION_X264_MINIMUM_REV = 3065;
static const unsigned int VERSION_X264_MINIMUM_REV = 3106;
static const unsigned int VERSION_X264_CURRENT_API = 164;
// ------------------------------------------------------------

View File

@ -40,8 +40,8 @@
#include <QPair>
//x265 version info
static const unsigned int VERSION_X265_MINIMUM_VER = 35;
static const unsigned int VERSION_X265_MINIMUM_REV = 20;
static const unsigned int VERSION_X265_MINIMUM_VER = 35;
static const unsigned int VERSION_X265_MINIMUM_REV = 100;
// ------------------------------------------------------------
// Helper Macros

View File

@ -25,8 +25,8 @@
#define VER_X264_MAJOR 3
#define VER_X264_MINOR 0
#define VER_X264_PATCH 2
#define VER_X264_BUILD 1218
#define VER_X264_PATCH 3
#define VER_X264_BUILD 1220
#define VER_X264_PORTABLE_EDITION (0)