From bd004a0381872ab48dfca10fba64765c2fc53bbd Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 5 Nov 2020 12:10:26 -0800 Subject: [PATCH] bump x265 and patches --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index a8ef0a8..b25a8c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ ENV \ THEORA=1.1.1 \ VORBIS=1.3.6 \ VPX=1.8.2 \ - X265=3.2.1 \ + X265=3.4 \ XVID=1.3.7 RUN \ @@ -433,7 +433,7 @@ RUN \ echo "**** grabbing x265 ****" && \ mkdir -p /tmp/x265 && \ curl -Lf \ - https://download.videolan.org/pub/videolan/x265/x265_${X265}.tar.gz | \ + http://anduin.linuxfromscratch.org/BLFS/x265/x265_${X265}.tar.gz | \ tar -zx --strip-components=1 -C /tmp/x265 RUN \ echo "**** compiling x265 ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index e6ca351..330e214 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -30,7 +30,7 @@ ENV \ THEORA=1.1.1 \ VORBIS=1.3.6 \ VPX=1.8.2 \ - X265=3.2.1 \ + X265=3.4 \ XVID=1.3.7 RUN \ @@ -343,7 +343,7 @@ RUN \ echo "**** grabbing x265 ****" && \ mkdir -p /tmp/x265 && \ curl -Lf \ - https://download.videolan.org/pub/videolan/x265/x265_${X265}.tar.gz | \ + http://anduin.linuxfromscratch.org/BLFS/x265/x265_${X265}.tar.gz | \ tar -zx --strip-components=1 -C /tmp/x265 RUN \ echo "**** compiling x265 ****" && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4bd44cd..9c0e97e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -6,7 +6,7 @@ ARG FFMPEG_VERSION # common env ENV \ DEBIAN_FRONTEND="noninteractive" \ - MAKEFLAGS="-j4" + MAKEFLAGS="-j8" # versions ENV \ @@ -346,13 +346,13 @@ RUN \ echo "**** grabbing x265 ****" && \ mkdir -p /tmp/x265 && \ curl -Lf \ - https://download.videolan.org/pub/videolan/x265/x265_${X265}.tar.gz | \ + http://anduin.linuxfromscratch.org/BLFS/x265/x265_3.4.tar.gz | \ tar -zx --strip-components=1 -C /tmp/x265 RUN \ echo "**** compiling x265 ****" && \ cd /tmp/x265/build/linux && \ curl -fL \ - https://sources.debian.org/data/main/x/x265/3.2.1-1/debian/patches/0001-Fix-arm-flags.patch \ + https://sources.debian.org/data/main/x/x265/3.4-2/debian/patches/0001-Fix-arm-flags.patch \ > arm.patch && \ patch ../../source/CMakeLists.txt < arm.patch && \ cmake \