Simple x264 Launcher development repository
修订版 | 363b472d2b60938d8874d57ca16acf287213d2c6 (tree) |
---|---|
时间 | 2016-06-12 21:35:22 |
作者 | ![]() |
Commiter | lordmulder |
Bump version.
@@ -2,10 +2,11 @@ | ||
2 | 2 | Simple x264/x265 Launcher version history |
3 | 3 | ----------------------------------------- |
4 | 4 | |
5 | -Version 2.71 [2016-??-??] | |
6 | -* Updated x265 to version 1.9+183 | |
5 | +Version 2.71 [2016-06-12] | |
6 | +* Updated x265 to version 1.9+200 | |
7 | 7 | * Added experimental NVEncC (NVIDIA GPU encoding) support |
8 | 8 | * Code refactoring |
9 | +* Fixed various included web-links | |
9 | 10 | |
10 | 11 | Version 2.70 [2016-04-29] |
11 | 12 | * Fixed potential VapourSynth error, when Avisynth is *not* installed |
@@ -39,7 +39,7 @@ | ||
39 | 39 | #include <QPair> |
40 | 40 | |
41 | 41 | //x265 version info |
42 | -static const unsigned int VERSION_NVENCC_MINIMUM_VER = 206; | |
42 | +static const unsigned int VERSION_NVENCC_MINIMUM_VER = 207; | |
43 | 43 | static const unsigned int VERSION_NVENCC_MINIMUM_API = 60; |
44 | 44 | |
45 | 45 | // ------------------------------------------------------------ |
@@ -40,7 +40,7 @@ | ||
40 | 40 | |
41 | 41 | //x265 version info |
42 | 42 | static const unsigned int VERSION_X265_MINIMUM_VER = 19; |
43 | -static const unsigned int VERSION_X265_MINIMUM_REV = 183; | |
43 | +static const unsigned int VERSION_X265_MINIMUM_REV = 200; | |
44 | 44 | |
45 | 45 | // ------------------------------------------------------------ |
46 | 46 | // Helper Macros |
@@ -25,8 +25,8 @@ | ||
25 | 25 | |
26 | 26 | #define VER_X264_MAJOR 2 |
27 | 27 | #define VER_X264_MINOR 7 |
28 | -#define VER_X264_PATCH 0 | |
29 | -#define VER_X264_BUILD 1032 | |
28 | +#define VER_X264_PATCH 1 | |
29 | +#define VER_X264_BUILD 1034 | |
30 | 30 | |
31 | 31 | #define VER_X264_PORTABLE_EDITION (0) |
32 | 32 |