From 20f229db4571ea0306d50fbc8a7cec232d29b26e Mon Sep 17 00:00:00 2001 From: lordmulder Date: Sun, 18 Jun 2023 14:01:30 +0200 Subject: [PATCH] Updated x264 and x265 versions. --- HISTORY.txt | 5 +++++ src/encoder_x264.cpp | 2 +- src/encoder_x265.cpp | 4 ++-- src/version.h | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/HISTORY.txt b/HISTORY.txt index 0a564e7..bb3f3b8 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -2,6 +2,11 @@ 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 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 diff --git a/src/encoder_x264.cpp b/src/encoder_x264.cpp index d8275b0..4b848d6 100644 --- a/src/encoder_x264.cpp +++ b/src/encoder_x264.cpp @@ -40,7 +40,7 @@ #include //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; // ------------------------------------------------------------ diff --git a/src/encoder_x265.cpp b/src/encoder_x265.cpp index 3eb31de..3d94bdf 100644 --- a/src/encoder_x265.cpp +++ b/src/encoder_x265.cpp @@ -40,8 +40,8 @@ #include //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 diff --git a/src/version.h b/src/version.h index 1f38e41..cc967e5 100644 --- a/src/version.h +++ b/src/version.h @@ -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)