From 2bbb409dc4cb46d91bdc8848696f766bf36a5a3b Mon Sep 17 00:00:00 2001 From: lordmulder Date: Mon, 22 Jul 2019 14:59:26 +0200 Subject: [PATCH] Bump x265 minimum required version to 3.1+8. --- HISTORY.txt | 1 + src/encoder_x265.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.txt b/HISTORY.txt index eaea205..7ec6044 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -4,6 +4,7 @@ Simple x264/x265 Launcher version history Version 2.92 [2019-07-22] * Updated x264 to revision 2984 (API v158) +* Updated x265 to version 3.1+8 * Fixed detection of VapourSynth R46 * Note: Minimum supported VapourSynth version is R46 now! diff --git a/src/encoder_x265.cpp b/src/encoder_x265.cpp index e591480..6a0becc 100644 --- a/src/encoder_x265.cpp +++ b/src/encoder_x265.cpp @@ -41,7 +41,7 @@ //x265 version info static const unsigned int VERSION_X265_MINIMUM_VER = 31; -static const unsigned int VERSION_X265_MINIMUM_REV = 0; +static const unsigned int VERSION_X265_MINIMUM_REV = 8; // ------------------------------------------------------------ // Helper Macros