From 5f7ea72c0d4eb4349d2d9c25fc9eba70c98bf496 Mon Sep 17 00:00:00 2001 From: Martin Piatka Date: Fri, 5 Aug 2022 15:23:41 +0200 Subject: [PATCH] CI: Update svt-av1 repo URL --- .github/scripts/Linux/download_build_ffmpeg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/Linux/download_build_ffmpeg.sh b/.github/scripts/Linux/download_build_ffmpeg.sh index 842de9550..be67ff175 100755 --- a/.github/scripts/Linux/download_build_ffmpeg.sh +++ b/.github/scripts/Linux/download_build_ffmpeg.sh @@ -13,7 +13,7 @@ install_libvpx() { FFMPEG_GIT_DEPTH=5000 # greater depth is useful for 3-way merges install_svt() { ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-HEVC && cd SVT-HEVC/Build/linux && ./build.sh release && cd Release && make -j $(nproc) && sudo make install || exit 1 ) - ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-AV1 && cd SVT-AV1 && cd Build && cmake .. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release && make -j $(nproc) && sudo make install || exit 1 ) + ( git clone --depth 1 https://gitlab.com/AOMediaCodec/SVT-AV1.git && cd SVT-AV1 && cd Build && cmake .. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release && make -j $(nproc) && sudo make install || exit 1 ) ( git clone --depth 1 https://github.com/OpenVisualCloud/SVT-VP9.git && cd SVT-VP9/Build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j $(nproc) && sudo make install || exit 1 ) # if patch apply fails, try increasing $FFMPEG_GIT_DEPTH git apply -3 SVT-HEVC/ffmpeg_plugin/master-*.patch